We have decided enable indented-code-block because it is an expected markdown feature. The trade-off here is that backticks will cause rendering issues in codeblock.
11 lines
229 B
Ruby
11 lines
229 B
Ruby
::REDCARPET_CONFIG = {
|
|
autolink: true,
|
|
no_intra_emphasis: true,
|
|
fenced_code_blocks: true,
|
|
lax_html_blocks: true,
|
|
lax_spacing: true,
|
|
strikethrough: true,
|
|
superscript: true,
|
|
tables: true,
|
|
footnotes: true
|
|
}.freeze
|