From 553fb282806b85172325221fb54849184ada368b Mon Sep 17 00:00:00 2001
From: marihachi <marihachi0620@gmail.com>
Date: Sat, 5 Jun 2021 17:02:14 +0900
Subject: [PATCH] update alt url syntax

---
 src/parser.pegjs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/parser.pegjs b/src/parser.pegjs
index 34233e0..ffdc432 100644
--- a/src/parser.pegjs
+++ b/src/parser.pegjs
@@ -379,7 +379,7 @@ urlBracketPair
 	/ "[" urlContentPart* "]"
 
 altUrlFormat
-	= "http" "s"? "://" (!">" CHAR)+
+	= "http" "s"? "://" (!(">" / _) CHAR)+
 {
 	return text();
 }
-- 
GitLab