forked from FoundKeyGang/FoundKey
fix html conversion issue with code blocks (#7943)
This commit is contained in:
parent
37b535df30
commit
3db7551ad3
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ export function fromHtml(html: string, hashtagNames?: string[]): string | null {
|
||||||
// block code (<pre><code>)
|
// block code (<pre><code>)
|
||||||
case 'pre': {
|
case 'pre': {
|
||||||
if (node.childNodes.length === 1 && node.childNodes[0].nodeName === 'code') {
|
if (node.childNodes.length === 1 && node.childNodes[0].nodeName === 'code') {
|
||||||
text += '```\n';
|
text += '\n```\n';
|
||||||
text += getText(node.childNodes[0]);
|
text += getText(node.childNodes[0]);
|
||||||
text += '\n```\n';
|
text += '\n```\n';
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue