From 2fd48425c562d0a06a6cf103b6d879009a3a9017 Mon Sep 17 00:00:00 2001
From: marihachi <marihachi0620@gmail.com>
Date: Tue, 20 Apr 2021 10:10:59 +0900
Subject: [PATCH] Disable syntaxes temporary

---
 src/parser.pegjs | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/parser.pegjs b/src/parser.pegjs
index eccf5f2..e7e660b 100644
--- a/src/parser.pegjs
+++ b/src/parser.pegjs
@@ -92,9 +92,9 @@ full
 	/ mention
 	/ hashtag
 	/ url
-	/ fnVer2
+	/// fnVer2
 	/ link
-	/ fnVer1
+	/// fnVer1
 	/ search // block
 	/ inlineText
 
@@ -111,9 +111,9 @@ inline
 	/ mention
 	/ hashtag
 	/ url
-	/ fnVer2
+	/// fnVer2
 	/ link
-	/ fnVer1
+	/// fnVer1
 	/ inlineText
 
 //
@@ -384,10 +384,12 @@ link
 	return LINK((silent != null), url, mergeText(label));
 }
 
+// linkLabelPart
+// 	= url { return text(); /* text node */ }
+// 	/ link { return text(); /* text node */ }
+// 	/ !"]" n:inline { return n; }
 linkLabelPart
-	= url { return text(); /* text node */ }
-	/ link { return text(); /* text node */ }
-	/ !"]" n:inline { return n; }
+	= !"]" . { return text(); }
 
 linkUrl
 	= url { return text(); }
-- 
GitLab