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 code returns this HTML:
- foreach (i; 0..3) span #{i} span A
<span>0</span> <span>1</span> <span>2</span><span>A</span>
Which look like this:
The <span> tag uses the inline display style, inline tags create a space between other tags if there's a new line after them. This creates two issues:
<span>
There should some syntax for loops that would not create new lines and the bug where for loops don't create new lines should be fixed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code returns this HTML:
Which look like this:
The
<span>
tag uses the inline display style, inline tags create a space between other tags if there's a new line after them.This creates two issues:
There should some syntax for loops that would not create new lines and the bug where for loops don't create new lines should be fixed
The text was updated successfully, but these errors were encountered: