pynliner
pynliner copied to clipboard
Does not properly apply nested selectors
trafficstars
This HTML
<style>
ol ol { list-style-type: lower-alpha; }
ol ol ol { list-style-type: lower-roman; }
</style>
<ol><li><p>Sublist:</p>
<ol><li>Item</li>
</ol>
</ol>
will result with the nested ol having lower-roman applied, instead of lower-alpha.