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) {