From: Ajay Bura <32841439+ajbura@users.noreply.github.com> Date: Tue, 31 Oct 2023 03:27:59 +0000 (+0530) Subject: fix typo in codeblock markdown output X-Git-Tag: v3.2.0~1 X-Git-Url: https://git.wafflesoft.org/?a=commitdiff_plain;h=1db0a9eaa8349bb19b545c7827bc37dacbb1b868;p=rainny.git fix typo in codeblock markdown output --- 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}
`; }, };