From c2c629509d9941f612e003f6c7cd0d6db7d8f83e Mon Sep 17 00:00:00 2001 From: marihachi Date: Sat, 5 Jun 2021 16:52:00 +0900 Subject: [PATCH] =?UTF-8?q?disallow=20=C2=B4=20in=20inline=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/parser.pegjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.pegjs b/src/parser.pegjs index b22092b..f350763 100644 --- a/src/parser.pegjs +++ b/src/parser.pegjs @@ -291,7 +291,7 @@ strike // inline: inlineCode inlineCode - = "`" content:$(!"`" c:CHAR { return c; })+ "`" + = "`" content:$(![`ยด] c:CHAR { return c; })+ "`" { return INLINE_CODE(content); }