unlocked291
Technical User
<ul>
<li>First</li>
<li>Second
<ul>
<li>Second_1</li>
<li>Second_2
<ul>
<li>Second_2_1</li>
</ul>
</li>
</ul>
</li>
</ul>
How can a UL list can be parsed in order to get to the deepest elements of it (I guess this is called map or tree?) Content moved to a string (serialization) and from the string back to UL list?
<li>First</li>
<li>Second
<ul>
<li>Second_1</li>
<li>Second_2
<ul>
<li>Second_2_1</li>
</ul>
</li>
</ul>
</li>
</ul>
How can a UL list can be parsed in order to get to the deepest elements of it (I guess this is called map or tree?) Content moved to a string (serialization) and from the string back to UL list?