From a6afe468911da22071916d20899df168b7434e48 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 8 Aug 2023 22:20:58 +0100 Subject: [PATCH] fix: skip value read for key without = --- OliverBooth/Markdown/TemplateInlineParser.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OliverBooth/Markdown/TemplateInlineParser.cs b/OliverBooth/Markdown/TemplateInlineParser.cs index 376463a..2120a48 100644 --- a/OliverBooth/Markdown/TemplateInlineParser.cs +++ b/OliverBooth/Markdown/TemplateInlineParser.cs @@ -78,6 +78,7 @@ public sealed class TemplateInlineParser : InlineParser { var argument = result.ToString(); argumentList.Add(argument); + continue; } buffer.Append(result);