From a6bd9be2a2d17ca32fc8f323be2bfaf3f514a5f4 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Tue, 5 May 2015 09:20:06 -0500 Subject: fix }}} bug in mustache --- src/rebar_mustache.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rebar_mustache.erl b/src/rebar_mustache.erl index 9016c0f..3fc21b5 100644 --- a/src/rebar_mustache.erl +++ b/src/rebar_mustache.erl @@ -84,7 +84,7 @@ render(Mod, CompiledTemplate, Ctx) -> pre_compile(T, State) -> SectionRE = "\{\{\#([^\}]*)}}\s*(.+?){{\/\\1\}\}\s*", {ok, CompiledSectionRE} = re:compile(SectionRE, [dotall]), - TagRE = "\{\{(#|=|!|<|>|\{)?(.+?)\\1?\}\}+", + TagRE = "\{\{(#|=|!|<|>|\{)?(.+?)\\1?\}\}", {ok, CompiledTagRE} = re:compile(TagRE, [dotall]), State2 = State#mstate{section_re = CompiledSectionRE, tag_re = CompiledTagRE}, "fun(Ctx) -> " ++ -- cgit v1.1