Clean up default config spec.

This commit is contained in:
Tom Preston-Werner 2012-12-15 22:09:21 -08:00
parent 583f9e0019
commit 22f4b12836
1 changed files with 23 additions and 19 deletions

View File

@ -49,7 +49,7 @@ module Jekyll
VERSION = '0.11.2' VERSION = '0.11.2'
# Default options. Overriden by values in _config.yml or command-line opts. # Default options. Overriden by values in _config.yml or command-line opts.
# (Strings rather symbols used for compatability with YAML). # Strings rather than symbols are used for compatability with YAML.
DEFAULTS = { DEFAULTS = {
'safe' => false, 'safe' => false,
'auto' => false, 'auto' => false,
@ -79,12 +79,15 @@ module Jekyll
'png_dir' => 'images/latex', 'png_dir' => 'images/latex',
'png_url' => '/images/latex' 'png_url' => '/images/latex'
}, },
'rdiscount' => { 'rdiscount' => {
'extensions' => [] 'extensions' => []
}, },
'redcarpet' => { 'redcarpet' => {
'extensions' => [] 'extensions' => []
}, },
'kramdown' => { 'kramdown' => {
'auto_ids' => true, 'auto_ids' => true,
'footnote_nr' => 1, 'footnote_nr' => 1,
@ -102,6 +105,7 @@ module Jekyll
'coderay_css' => 'style' 'coderay_css' => 'style'
} }
}, },
'redcloth' => { 'redcloth' => {
'hard_breaks' => true 'hard_breaks' => true
} }