From be31e0ed9e9c8ee909f5163117af62c61d5bbfde Mon Sep 17 00:00:00 2001 From: Julian Orchard Date: Wed, 13 Nov 2024 21:48:20 +0000 Subject: [PATCH] docs(fix): Quotation in external templates example Signed-off-by: Julian Orchard --- docs/content/syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/syntax.md b/docs/content/syntax.md index e4c9b8f91..98eeaef24 100644 --- a/docs/content/syntax.md +++ b/docs/content/syntax.md @@ -325,7 +325,7 @@ Hello {{ . }}! ``` ``` -$ gomplate -t hello=hello.t -i '{{ template "hello" "World" }} {{ template "hello" .Env.USER }}" +$ gomplate -t hello=hello.t -i '{{ template "hello" "World" }} {{ template "hello" .Env.USER }}' Hello World! Hello hairyhenderson! ```