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`.
`diff
- <pre><code class="language-python">print('hello')
+ <pre lang="python"><code>print('hello'
</code></pre>
`
Thank you nschloe for this contribution.