parent
832860bcb5
commit
97e9fb29b0
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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',
|
||||||
|
|
Loading…
Reference in New Issue