<div id="main">
Some text
<strong>1234</strong>
<a class="large blue" href="http://example.com">stuff</a>
</div>
Instead, it results in this HTML:
<main id="">
Some text
<strong>1234</strong>
<a href="http://example.com" class="large red">stuff</a>
</main>
(Edited to add: Just to be clear, the chief problem here is that the % operator is fumbling div#main syntax. The blue/red difference is just a doc error, not a code error.)
The
%
operator's behavior doesn't match the documentation.The docs give this example:
... which should result in this HTML:
Instead, it results in this HTML:
(Edited to add: Just to be clear, the chief problem here is that the
%
operator is fumblingdiv#main
syntax. The blue/red difference is just a doc error, not a code error.)