Add implicit defaults to DEFAULTS
This commit is contained in:
parent
dcad4b2867
commit
e7815d873c
|
@ -8,8 +8,12 @@ module Jekyll
|
||||||
'destination' => File.join(Dir.pwd, '_site'),
|
'destination' => File.join(Dir.pwd, '_site'),
|
||||||
'plugins' => '_plugins',
|
'plugins' => '_plugins',
|
||||||
'layouts' => '_layouts',
|
'layouts' => '_layouts',
|
||||||
'keep_files' => ['.git','.svn'],
|
'keep_files' => ['.git','.svn'],
|
||||||
|
|
||||||
|
'safe' => false,
|
||||||
|
'show_drafts' => nil,
|
||||||
|
'limit_posts' => nil,
|
||||||
|
'lsi' => false,
|
||||||
'future' => true, # remove and make true just default
|
'future' => true, # remove and make true just default
|
||||||
'pygments' => true, # remove and make true just default
|
'pygments' => true, # remove and make true just default
|
||||||
|
|
||||||
|
@ -17,6 +21,7 @@ module Jekyll
|
||||||
'permalink' => 'date',
|
'permalink' => 'date',
|
||||||
'baseurl' => '/',
|
'baseurl' => '/',
|
||||||
'include' => ['.htaccess'],
|
'include' => ['.htaccess'],
|
||||||
|
'exclude' => [],
|
||||||
'paginate_path' => 'page:num',
|
'paginate_path' => 'page:num',
|
||||||
|
|
||||||
'markdown_ext' => 'markdown,mkd,mkdn,md',
|
'markdown_ext' => 'markdown,mkd,mkdn,md',
|
||||||
|
|
Loading…
Reference in New Issue