How do I handle nested bullets with a conversion table?
How do I preserve the hierarchy of nested bullets in the unstructured file in the converted structured file?
I set it up this way
P: Bulleted Level 1 li L1
P: Bulleted Level 2 li L2
which yields li[L1] and li[L2]
I then wrap the entire list with this top level element:
E:li[b]+&E:li[b2]+ ul
which yields this:
<ul>
<li>blah</li>
<li>blab</li>
<li>blab</li>
</ul>
but I can't figure out how to get this, i.e, how do I demote the "blab" list items?
<ul>
<li>blah<ul>
<li>blab</li>
<li>blab</li>
</ul>
</li>
</ul>
Any help would be greatly appreciated.
