Hello,
I encountered an issue with the following code with rendering option expressionLanguage => 'js':
doctype html
html
body
if falsy || !falsy || !falsy
p 1
else
p 2
with data:
array(
'falsy' => false
)
I expected to get:
<!DOCTYPE html>
<html>
<body>
<p>1</p>
</body>
</html>
But I actually get:
<!DOCTYPE html>
<html>
<body>
<p>2</p>
</body>
</html>
js-phpize-phug 2.x will occer this error, but 1.x not occerred.
Thanks!