When I have a list of items, like text for a nav, export the <ul></ul>
correctly.
I have the following as a left nav element in XD:
CLOTHING
Item 1
Item 2
Item 3
If I export this, it spits this code out:
<ul class="left-nav__category">
<li id="CLOTHING">
<span>CLOTHING</span>
</li>
</ul>
<li id="Activewear">
<span>Activewear</span>
</li>
<div id="Casual">
<span>Casual</span>
</div>
<div id="Coats">
<span>Coats</span>
</div>
<div id="Shirts">
<span>Shirts</span>
</div>
<div id="Jeans">
<span>Jeans</span>
</div>
I would expect all the items to be in a list, not just the top element and the incorrect <li></li>
below it.
I have also tried this in a repeat grid with the same results.