From ee697a6308f32a4b7374069da72e4c6681ea40ae Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sun, 17 Mar 2013 21:09:58 +0100 Subject: [PATCH] Add Jekyll::DEFAULTS['baseurl'] and set the default pygments option to _true_ --- lib/jekyll.rb | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/jekyll.rb b/lib/jekyll.rb index ead5e138..b773897f 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -64,12 +64,13 @@ module Jekyll 'keep_files' => ['.git','.svn'], 'future' => true, # remove and make true just default - 'pygments' => false, # remove and make true just default + 'pygments' => true, # remove and make true just default - 'markdown' => 'maruku', # no longer a command option - 'permalink' => 'date', # no longer a command option - 'include' => ['.htaccess'], # no longer a command option - 'paginate_path' => 'page:num', # no longer a command option + 'markdown' => 'maruku', + 'permalink' => 'date', + 'baseurl' => '', + 'include' => ['.htaccess'], + 'paginate_path' => 'page:num', 'markdown_ext' => 'markdown,mkd,mkdn,md', 'textile_ext' => 'textile',