diff --git a/src/parser.pegjs b/src/parser.pegjs
index b22092bbe5138d26984ba8a1dea711974def74ad..f350763a495574a2aa2ab01141da81f68c0c321c 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);
 }