Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(parser): code block language class
previously the code block had a class with the name found in the markdown code notation: ```js console.log(test); ``` <pre> <code class=js> console.log(test); </code> </pre> now the parser generates the output according to https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-code-element <pre> <code class=language-js> console.log(test); </code> </pre>
- Loading branch information