diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2018-08-18 21:57:21 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-08-19 00:20:36 +0900 |
| commit | 22f4b3cc7b905f366c139342b0dc851abd668443 (patch) | |
| tree | 67a48ece339b5d8693722ac47f2432735fae90f2 /src | |
| parent | improve html to MFM (diff) | |
| download | misskey-22f4b3cc7b905f366c139342b0dc851abd668443.tar.gz misskey-22f4b3cc7b905f366c139342b0dc851abd668443.tar.bz2 misskey-22f4b3cc7b905f366c139342b0dc851abd668443.zip | |
missing semicolon
Diffstat (limited to 'src')
| -rw-r--r-- | src/mfm/html-to-mfm.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mfm/html-to-mfm.ts b/src/mfm/html-to-mfm.ts index e8b1564958..084578fc18 100644 --- a/src/mfm/html-to-mfm.ts +++ b/src/mfm/html-to-mfm.ts @@ -51,7 +51,7 @@ export default function(html: string): string { } // メンション以外 } else { - text += `[${txt}](${node.attrs.find((x: any) => x.name == 'href').value})` + text += `[${txt}](${node.attrs.find((x: any) => x.name == 'href').value})`; } if (node.childNodes) { |