We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following pug code:
p(answear=substr("foo-bar", strlen("foo") + 1))
Turns into the following PHP (simplified):
<p answear="<?php echo substr("foo-bar", strlen("foo")); ?>"></p>
The + 1 is missing, we expect:
+ 1
<p answear="<?php echo substr("foo-bar", strlen("foo") + 1); ?>"></p>
It's most likely caused by a bad handling of parentheses in CodeHandler::parseBetweenSeparators().
The text was updated successfully, but these errors were encountered:
Handle PHP expressions properly #5 (#8)
fdf01d9
* Expressions in attributes * Fix parentheses ending * Fix attributes escaping
kylekatarnls
No branches or pull requests
The following pug code:
Turns into the following PHP (simplified):
The
+ 1
is missing, we expect:It's most likely caused by a bad handling of parentheses in CodeHandler::parseBetweenSeparators().
The text was updated successfully, but these errors were encountered: