From 171ebb2b63f5d2ab4624cde074b20a4b01b7c751 Mon Sep 17 00:00:00 2001 From: Kyle Huggins Date: Wed, 24 Jan 2024 19:33:32 -0600 Subject: [PATCH] fix(docs): address liquid syntax error Liquid Exception: Liquid syntax error (line 39): Variable '{{substring 'A full quote' -5 5}' was not properly terminated with regexp: /\}\}/ in template.md --- docs/template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/template.md b/docs/template.md index 3a21028..08c4a7f 100644 --- a/docs/template.md +++ b/docs/template.md @@ -36,7 +36,7 @@ The `{{concat s1 s2}}` helper concatenates two strings together. For example `{{ * The `{{substring s index length}}` helper extracts a portion of the given string. For example: * `{{substring 'A full quote' 2 4}}` outputs `full` - * `{{substring 'A full quote' -5 5}` outputs `quote` + * `{{substring 'A full quote' -5 5}}` outputs `quote` ### Date helpers