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:
<link rel="stylesheet" type="text/css" href="custom.css"> text <style type="text/css"> body { color: red; } </style>
Generates a surprising (and broken) result:
<span><link rel="stylesheet" type="text/css" href="./_file/custom.css"> text <style type="text/css"> </style></span><p>body { color: red; }</p> <span> </span>
It seems that the open <style> is considered part of the first block, and gets separated from the style contents. Another blank line problem!
<style>
The text was updated successfully, but these errors were encountered:
Fixed in #843.
Sorry, something went wrong.
mbostock
Successfully merging a pull request may close this issue.
This:
Generates a surprising (and broken) result:
It seems that the open
<style>
is considered part of the first block, and gets separated from the style contents. Another blank line problem!The text was updated successfully, but these errors were encountered: