jknack / handlebars.java

Logic-less and semantic Mustache templates with Java
http://jknack.github.io/handlebars.java
Other
1.47k stars 383 forks source link

Curly braces parser greediness #1114

Open gcx-seb opened 8 months ago

gcx-seb commented 8 months ago

A simple template like {{value}}} fails compilation:

com.github.jknack.handlebars.HandlebarsException: inline@481dc12c:1:7: found: '}}}', expected: '}}'
{{value}}}

I'm wondering if that is expected behaviour? Because I'd expect that in the output the extra } at the last position is simply kept as-is.