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 ### Bug Fixes
* Correct use of `url` and `baseurl` in the site template. (#2317) * Correct use of `url` and `baseurl` in the site template. (#2317)
* Default `baseurl` to `""` (#2317)
### Development Fixes ### Development Fixes

View File

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