You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot compile templates that contain expressions that start with a number like {{ 1 }} or {{ 128T }}. But native Handlebars.js seems to support this.
Minimal code example:
Handlebars handlebars = new Handlebars();
try {
handlebars.compileInline("{{ 1 }}"); // throws HandlebarsException
} catch (IOException e) {
// Should not happen
}
Hi,
I cannot compile templates that contain expressions that start with a number like
{{ 1 }}
or{{ 128T }}
. But native Handlebars.js seems to support this.Minimal code example:
I am using version 4.0.6.
This issue might be similar to #573 .
Best regards,
Norman
The text was updated successfully, but these errors were encountered: