Add implicit defaults to DEFAULTS

This commit is contained in:
Brian Kim 2013-04-13 12:37:38 -04:00
parent dcad4b2867
commit e7815d873c
1 changed files with 6 additions and 1 deletions

View File

@ -8,8 +8,12 @@ module Jekyll
'destination' => File.join(Dir.pwd, '_site'),
'plugins' => '_plugins',
'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
'pygments' => true, # remove and make true just default
@ -17,6 +21,7 @@ module Jekyll
'permalink' => 'date',
'baseurl' => '/',
'include' => ['.htaccess'],
'exclude' => [],
'paginate_path' => 'page:num',
'markdown_ext' => 'markdown,mkd,mkdn,md',