From 3d0aa5e84a2b2a7158f1e4b2070fecd130a3e2bc Mon Sep 17 00:00:00 2001 From: Fred Hebert Date: Sun, 10 Jan 2016 11:44:37 -0500 Subject: Unquote templates, add a warning instead. --- priv/templates/sys.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'priv/templates/sys.config') diff --git a/priv/templates/sys.config b/priv/templates/sys.config index 7fd6bcb..b587675 100644 --- a/priv/templates/sys.config +++ b/priv/templates/sys.config @@ -1,3 +1,3 @@ [ - {'{{name}}', []} + {{{name}}, []} ]. -- cgit v1.1 From 810b74326142f1f39cc98da6021c9fc9236a8045 Mon Sep 17 00:00:00 2001 From: Fred Hebert Date: Mon, 11 Jan 2016 14:54:49 -0500 Subject: Remove triple brackets in bbmustache templates Issues formerly were avoided by quoting atoms. Unquoting them created unbalanced tags (`{{{name}}`) which were mistakes. This patch inserts spaces to unconfused bbmustache. --- priv/templates/sys.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'priv/templates/sys.config') diff --git a/priv/templates/sys.config b/priv/templates/sys.config index b587675..d892fd6 100644 --- a/priv/templates/sys.config +++ b/priv/templates/sys.config @@ -1,3 +1,3 @@ [ - {{{name}}, []} + { {{name}}, []} ]. -- cgit v1.1