How to use json to build a nested list
I realize this is probably one of the most common uses of JSON, but I'm hitting my js knowledge limit. I want to output a two-level <ul> using a json structure.
How should I structure the json and then how to output it? Any help greatly appreciated.
Desired output:
<ul>
<li>Topic 1
<ul>
<li>Item 1a</li>
<li>Item 2a</li>
</ul>
<li>Topic 2
<ul>
<li>Item 1a</li>
<li>Item 2a</li>
</ul>
<li>Topic 3
<ul>
<li>Item 1a</li>
<li>Item 2a</li>
</ul>
</li>
</ul>