This repository was archived by the owner on Sep 25, 2021. It is now read-only.

Description
I wanted to use an expression that contains Mod (%) operator but the template generates an error saying : "SyntaxError: illegal character". How can I get rid of it.
My code is something like below:
{%
for( var i = 0, venue; venue = o[i] ; i++){
if( ! (i % 2) ) {
// do something with 'venue'
}
}
%}