Fix MFM parsing

This commit is contained in:
syuilo
2018-10-29 19:09:24 +09:00
parent 83d168ece3
commit 4b145da046
2 changed files with 7 additions and 1 deletions

View File

@ -17,7 +17,8 @@ export default function(text: string, index: number) {
const quote = match[1]
.split('\n')
.map(line => line.replace(/^>+/g, '').trim())
.join('\n');
.join('\n')
.trim();
return {
type: 'quote',