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
HTML being is cleaned out of tags...
echo '<iframe src="http://www.google.com" name="iframe_a" height="200 " width="300" title="Iframe Example"></iframe><a target="iframe_a" href="https://github.com">iframe_a</a>' | b html
Here is expected output
<iframe src="http://www.google.com" name="iframe_a" height="200" width="300" title="Iframe Example">...</iframe> <a target="iframe_a" href="https://github.com">iframe_a</a>
Here is what I get instead
<iframe height="200" width="300" title="Iframe Example">...</iframe> <a href="https://github.com">iframe_a</a>
Is there a way to preserve the HTML as emitted ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HTML being is cleaned out of tags...
Here is expected output
Here is what I get instead
Is there a way to preserve the HTML as emitted ?
The text was updated successfully, but these errors were encountered: