Currently I have a nested list that looks like this
<ul>
<li>Potatoes</li>
<ul>
<li>Sweet Potatoes</li>
<li>Fried Chips</li>
</ul>
</ul>
And it renders like this:
Potatoes
Sweet Potatoes
Fried Chips
Is there a way to have it render items as if it was all one list with more than one level, such as:
Potatoes
1.1 Sweet Potatoes
1.2 Fried Chips