diff --git a/src/app/plugins/markdown.ts b/src/app/plugins/markdown.ts index 40427a7..9b3b82f 100644 --- a/src/app/plugins/markdown.ts +++ b/src/app/plugins/markdown.ts @@ -254,7 +254,7 @@ const CodeBlockRule: BlockMDRule = { html: (match) => { const [, g1, g2] = match; const classNameAtt = g1 ? ` class="language-${g1}"` : ''; - return `
${g2}
`;
+ return `${g2}
`;
},
};