We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fbb5ef commit 881f6d4Copy full SHA for 881f6d4
packages/content/parsers/markdown/handlers/code.js
@@ -56,7 +56,7 @@ const toAst = (h, node) => (highlighted) => {
56
}
57
58
module.exports = highlighter => (h, node) => {
59
- const lang = node.lang + (node.meta || '')
+ const lang = node.lang + ' ' + (node.meta || '')
60
const { language, lineHighlights, fileName } = parseThematicBlock(lang)
61
const code = node.value ? detab(node.value + '\n') : ''
62
0 commit comments