From 000d9cc1cef1d4041c1c315c3b918635714f912a Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Sun, 19 Aug 2018 05:15:50 +0900
Subject: [PATCH] Fix bug

---
 src/mfm/html-to-mfm.ts | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/mfm/html-to-mfm.ts b/src/mfm/html-to-mfm.ts
index 084578fc18..daa228ec51 100644
--- a/src/mfm/html-to-mfm.ts
+++ b/src/mfm/html-to-mfm.ts
@@ -49,9 +49,6 @@ export default function(html: string): string {
 						text += txt;
 						break;
 					}
-				// メンション以外
-				} else {
-					text += `[${txt}](${node.attrs.find((x: any) => x.name == 'href').value})`;
 				}
 
 				if (node.childNodes) {