AngryMane / mkdocs-glossary-plugin

BSD 2-Clause "Simplified" License
4 stars 1 forks source link

Line break in codeblock does not work #22

Open AngryMane opened 2 years ago

AngryMane commented 2 years ago
aaa
bbb

This plugin can't render fenced code block like above.
The root cause is maybe pandoc parser. The parser runs fine when using ~~~ at the beginning and the end of fenced code block, but when using ```, Pandoc recognizes that is Code, not Codeblock.

The reference of markdown_phpextra doesn't mention these behavior, so this may be a bug.

AngryMane commented 2 years ago

I can work around by setting input_format: "markdown" config. But markdown maybe doesn't support table-syntax.