From e053ba532f1e58bb54f286b950e3be7166ba3dcd Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Wed, 15 Apr 2026 14:41:33 +0200 Subject: feat(lexer): supports link and image --- grammar.ebnf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grammar.ebnf') diff --git a/grammar.ebnf b/grammar.ebnf index d0259a1..664f68b 100644 --- a/grammar.ebnf +++ b/grammar.ebnf @@ -6,7 +6,7 @@ strong-delimiter = "\n\n", { "\n" }; (* blocks *) block = title | paragraph | quote | callout | code-block | math-block | image | footnotes; -title = ? #{1,6} ?, content; +title = ? #{1,6} ?, " ", content; paragraph = content, { weak-delimiter, content }; quote = ">", content, { weak-delimiter, ">", content }, [ paragraph ]; callout = ":::", [ ? [a-z]+ ? ], { delimiter, content }, weak-delimiter, ":::"; -- cgit v1.2.3