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
This simple template:
div if tabs div != myvar
generates:
<div><?php if ($tabs) : ?><div></div><?php endif ?>(<?= $myvar ?>)</div>
— note the parenthesis around <?= $myvar ?>.
<?= $myvar ?>
Changing it to either
div if tabs div div!= myvar
or
div if tabs div | != myvar
(whitespace goes after |) — removes the parenthesis.
The text was updated successfully, but these errors were encountered:
Pull requests are welcome :)
Sorry, something went wrong.
No branches or pull requests
This simple template:
generates:
— note the parenthesis around
<?= $myvar ?>
.Changing it to either
or
(whitespace goes after |) — removes the parenthesis.
The text was updated successfully, but these errors were encountered: