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,
|
'use_divs' => false,
|
||||||
'png_engine' => 'blahtex',
|
'png_engine' => 'blahtex',
|
||||||
'png_dir' => 'images/latex',
|
'png_dir' => 'images/latex',
|
||||||
'png_url' => '/images/latex'
|
'png_url' => '/images/latex',
|
||||||
|
'fenced_code_blocks' => true
|
||||||
},
|
},
|
||||||
|
|
||||||
'rdiscount' => {
|
'rdiscount' => {
|
||||||
|
|
|
@ -316,6 +316,7 @@ maruku:
|
||||||
png_engine: blahtex
|
png_engine: blahtex
|
||||||
png_dir: images/latex
|
png_dir: images/latex
|
||||||
png_url: /images/latex
|
png_url: /images/latex
|
||||||
|
fenced_code_blocks: true
|
||||||
|
|
||||||
rdiscount:
|
rdiscount:
|
||||||
extensions: []
|
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`:
|
For example, in your `_config.yml`:
|
||||||
|
|
||||||
kramdown:
|
kramdown:
|
||||||
input: GFM
|
input: GFM
|
||||||
|
|
Loading…
Reference in New Issue