Default baseurl to "" rather than to "/"

Also a fix for #2317
This commit is contained in:
Parker Moore 2014-05-06 23:54:14 -04:00
parent 832860bcb5
commit 97e9fb29b0
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
### Bug Fixes
* Correct use of `url` and `baseurl` in the site template. (#2317)
* Default `baseurl` to `""` (#2317)
### Development Fixes

View File

@ -32,7 +32,7 @@ module Jekyll
'markdown' => 'kramdown',
'highlighter' => 'pygments',
'permalink' => 'date',
'baseurl' => '/',
'baseurl' => '',
'include' => ['.htaccess'],
'exclude' => [],
'paginate_path' => '/page:num',