Question
I wish to have a sublist in a list item, which is not the last piece of text in the item. Ie I want the final html to look something like:
<ol>
<li>
Item 1
<ul>
<li>sublist item 1</li>
<li>sublist item 2</li>
</ul>
Continue parent list item
</li>
<li>
Item 2
</li>
</ol>
giving:
-
Item 1
- sublist item 1
- sublist item 2
Continue parent list item
-
Item 2
Is this possible? I can only insert sub lists if they are the last thing in the parent.
Obviously I want to use TWiki markup rather than HTML, I was thinking something like:
1. Item 1
* sublist item 1
* sublist item 2
Continue parent list item
1. Item 2
But this results in 'Continue parent list item' being part of sublist item 2, even though it is prefixed by only 3 spaces not 6.
Environment
--
StruanKerrLiddell - 09 Jun 2008
Short answer:
TML does not support that. You need to use HTML if you want this.
--
PeterThoeny - 10 Jun 2008
Ok, Thanks very much.
--
StruanKerrLiddell - 10 Jun 2008