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
PHP 7.0.5 Smarty 3.1.29 Apache 2.4.6
Testing the example code in Smarty strip tag page should make this:
`{* the following will be all run into one line upon output *} {strip}
{/strip}`
Become this: <table border='0'><tr><td><a href="http://. snipped...</a></td></tr></table>
<table border='0'><tr><td><a href="http://. snipped...</a></td></tr></table>
Butt this is what I get: <table border='0'> <tr> <td> <a href=""> <font color="red">This is a test</font> </a> </td> </tr> </table>
<table border='0'> <tr> <td> <a href=""> <font color="red">This is a test</font> </a> </td> </tr> </table>
The bug is that has spaces between the html tags.
The text was updated successfully, but these errors were encountered:
- bugfix {strip} remove space on linebreak between html tags #213
2cb0351
This bug is now fixed in the master branch
Sorry, something went wrong.
No branches or pull requests
PHP 7.0.5
Smarty 3.1.29
Apache 2.4.6
Testing the example code in Smarty strip tag page should make this:
`{* the following will be all run into one line upon output *}
{strip}
{/strip}`
Become this:
<table border='0'><tr><td><a href="http://. snipped...</a></td></tr></table>
Butt this is what I get:
<table border='0'> <tr> <td> <a href=""> <font color="red">This is a test</font> </a> </td> </tr> </table>
The bug is that has spaces between the html tags.
The text was updated successfully, but these errors were encountered: