Hello all,
I am working with an xml document that has the following basic structure:
<action-list>
<action>
<title>Title</title>
<bullet level="1">First item</bullet>
<bullet level="1">Second item</bullet>
<bullet level="2">First subitem</bullet>
<bullet level="2">Second subitem</bullet>
<bullet level="1">Third item</bullet>
</action>
</action-list>
The type of output I am looking for is
Title
1. First Item
2. Second Item
a. First subitem
b. Second subitem
3. Third Item
I am not having much luck coming up with the code that allows for this to happen.
Thanks Phil
I am working with an xml document that has the following basic structure:
<action-list>
<action>
<title>Title</title>
<bullet level="1">First item</bullet>
<bullet level="1">Second item</bullet>
<bullet level="2">First subitem</bullet>
<bullet level="2">Second subitem</bullet>
<bullet level="1">Third item</bullet>
</action>
</action-list>
The type of output I am looking for is
Title
1. First Item
2. Second Item
a. First subitem
b. Second subitem
3. Third Item
I am not having much luck coming up with the code that allows for this to happen.
Thanks Phil