-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
With corrected HTML trees, inline transformations can use correct CSS selectors. Bad HTML templates are common from designers:
<style>
a { color:yellow }
table a { color:red }
</style>
<table>
<a href="#">link</a>
<tr><td></td></tr>
</table>would otherwise become:
<table>
<a href="#" style="color:red">link</a>
<tr><td></td></tr>
</table>instead of:
<a href="#" style="color:yellow">link</a>
<table>
<tr><td></td></tr>
</table>Metadata
Metadata
Assignees
Labels
No labels