From 32332b0c62ca8fe0dc4a69f064fd52cc230520a1 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Tue, 10 Sep 2024 14:55:57 -0700 Subject: [PATCH] Fix doc build error --- src/referencestore.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/referencestore.jl b/src/referencestore.jl index c5063c1..b1eaada 100644 --- a/src/referencestore.jl +++ b/src/referencestore.jl @@ -343,11 +343,11 @@ end This function applies the templates stored in `store` to the source string, and returns the resolved string. -It uses Mustache.jl under the hood, but all `{{template}}` values are set to **not** URI-encode characters. +It uses Mustache.jl under the hood, but all `{` `{` `template` `}` `}` values are set to **not** URI-encode characters. """ function apply_templates(store::ReferenceStore, source::String) tokens = Mustache.parse(source) - # Adjust tokens so that `{{var}}` becomes `{{{var}}}`, the latter of which + # Adjust tokens so that `{` `{` var `}` `}` becomes `{` `{` `{` var `}` `}` `}`, the latter of which # is rendered without URI escaping. for token in tokens.tokens if token._type == "name"