diff --git a/OliverBooth/Markdown/TemplateInlineParser.cs b/OliverBooth/Markdown/TemplateInlineParser.cs index 91964b6..40ca4f1 100644 --- a/OliverBooth/Markdown/TemplateInlineParser.cs +++ b/OliverBooth/Markdown/TemplateInlineParser.cs @@ -12,6 +12,14 @@ public sealed class TemplateInlineParser : InlineParser private static readonly IReadOnlyDictionary EmptyParams = new Dictionary().AsReadOnly(); + /// + /// Initializes a new instance of the class. + /// + public TemplateInlineParser() + { + OpeningCharacters = new[] { '{' }; + } + /// public override bool Match(InlineProcessor processor, ref StringSlice slice) {