Skip to content

0.6.0

Compare
Choose a tag to compare
@mbarkhau mbarkhau released this 01 Jul 10:38
· 20 commits to master since this release

The output generated by cmarkgfm.github_flavored_markdown_to_html for code blocks has changed to be in line with that of github.com.
This change may break existing css rules as code blocks were generated differently for cmarkgfm<0.6.0.

-        <pre><code class="language-python">print('hello')
+        <pre lang="python"><code>print('hello'
         </code></pre>

Thank you @nschloe for this contribution.