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
JS bits containing <, e.g. a simple for loop or a condition are parsed as opener tags resulting in a failure:
if (month.length < 2)
month = '0' + month;
if (day.length < 2)
day = '0' + day;
leads to
Template parse failed: malformed tag at line 54 near '< 2)
day = '0' + day'
in method panic at /home/koto/.rakubrew/versions/moar-2021.05/install/share/perl6/site/sources/DEC52040CAB8F0AC21402372C4D99D4B9A2D7D0D (Cro::WebApp::Template::Parser) line 372
in regex sequence-element:sym<literal-open-tag> at /home/koto/.rakubrew/versions/moar-2021.05/install/share/perl6/site/sources/DEC52040CAB8F0AC21402372C4D99D4B9A2D7D0D (Cro::WebApp::Template::Parser) line 38
The text was updated successfully, but these errors were encountered:
JS bits containing
<
, e.g. a simple for loop or a condition are parsed as opener tags resulting in a failure:leads to
The text was updated successfully, but these errors were encountered: