Merge branch 'develop' into notification-read-api

This commit is contained in:
tamaina
2021-12-29 16:14:46 +09:00
26 changed files with 474 additions and 528 deletions

View File

@@ -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;