Fix #4202: Have Kramdown behave like Github.

This commit is contained in:
Jordon Bedwell 2015-12-04 11:11:30 -06:00
parent 3432fd2c2d
commit e331a37260
1 changed files with 5 additions and 3 deletions

View File

@ -65,10 +65,12 @@ module Jekyll
'kramdown' => { 'kramdown' => {
'auto_ids' => true, 'auto_ids' => true,
'footnote_nr' => 1,
'entity_output' => 'as_char',
'toc_levels' => '1..6', 'toc_levels' => '1..6',
'smart_quotes' => 'lsquo,rsquo,ldquo,rdquo' 'entity_output' => 'as_char',
'smart_quotes' => 'lsquo,rsquo,ldquo,rdquo',
'input' => "GFM",
'hard_wrap' => false,
'footnote_nr' => 1
} }
}] }]