From 3499cf82d51e19d3e0e3937d8ec9539d7d9bdbe6 Mon Sep 17 00:00:00 2001 From: "N0\\A" Date: Tue, 14 Jul 2026 00:38:46 +0200 Subject: [PATCH] Fix paragraph under blockquote --- src/parser.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.odin b/src/parser.odin index 6c2803c..94301a3 100644 --- a/src/parser.odin +++ b/src/parser.odin @@ -60,7 +60,7 @@ parse :: proc(lines: []string, allocator := context.allocator) -> Token { if len(line) == 0 { if line_index != len(lines) - 1 { - if current_token.parent != nil { + for current_token.parent != nil { current_token = current_token.parent }