HTML-Renderer
HTML-Renderer copied to clipboard
Comments in inline CSS (<style>) cause all styles to be ignored
This does not work:
<style>
/* comment */
body { color: blue };
</style>
This works:
``` html
<style>
body { color: blue };
</style>