Skip to content
Snippets Groups Projects
Unverified Commit af022fd8 authored by Johann150's avatar Johann150 Committed by GitHub
Browse files

fix html blockquote conversion (#8069)

parent 5c7181ca
No related branches found
No related tags found
No related merge requests found
......@@ -168,7 +168,7 @@ export function fromHtml(html: string, hashtagNames?: string[]): string | null {
case 'blockquote': {
const t = getText(node);
if (t) {
text += '> ';
text += '\n> ';
text += t.split('\n').join(`\n> `);
}
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment