Default Maruku fenced_code_blocks to ON.
Extends https://github.com/jekyll/jekyll/pull/1799
This commit is contained in:
parent
b7bdcb19ca
commit
1ebce26881
|
@ -49,7 +49,8 @@ module Jekyll
|
|||
'use_divs' => false,
|
||||
'png_engine' => 'blahtex',
|
||||
'png_dir' => 'images/latex',
|
||||
'png_url' => '/images/latex'
|
||||
'png_url' => '/images/latex',
|
||||
'fenced_code_blocks' => true
|
||||
},
|
||||
|
||||
'rdiscount' => {
|
||||
|
|
|
@ -316,6 +316,7 @@ maruku:
|
|||
png_engine: blahtex
|
||||
png_dir: images/latex
|
||||
png_url: /images/latex
|
||||
fenced_code_blocks: true
|
||||
|
||||
rdiscount:
|
||||
extensions: []
|
||||
|
@ -380,4 +381,4 @@ In addition to the defaults mentioned above, you can also turn on recognition of
|
|||
For example, in your `_config.yml`:
|
||||
|
||||
kramdown:
|
||||
input: GFM
|
||||
input: GFM
|
||||
|
|
Loading…
Reference in New Issue