documentation/config.rb
Baptiste Gelez e1b51db4df Many changes
Update everything (I may have forgotten a few details however)

Split installation documentation in many parts, and make it so that
you only read what you need to read.

Left menu to quickly go to another page.

Remove the i18n docs as it was outdated and it duplicated contribute.joinplu.me
2019-02-13 20:28:35 +01:00

22 lines
501 B
Ruby

# Activate and configure extensions
# https://middlemanapp.com/advanced/configuration/#configuring-extensions
set :markdown_engine, :redcarpet
set :markdown, :fenced_code_blocks => true, :smartypants => true
activate :syntax
activate :directory_indexes
activate :autoprefixer do |prefix|
prefix.browsers = "last 2 versions"
end
page '/*.xml', layout: false
page '/*.json', layout: false
page '/*.txt', layout: false
configure :build do
activate :minify_css
activate :minify_javascript
end