Question
Hello. I tried to nest an unordered list (itemize) in an item of an ordered list (enumerate), but couldn't continue the item of the ordered list thereafter. This is no problem in HTML as the following piece of HTML-code should illustrate:
<ol>
<li>ordered item begin
<ul>
<li>unordered item</li>
<li>unordered item</li>
<li>unordered item</li>
</ul>
ordered item continued ...
</li>
<li>next ordered item</li>
</ol>
This HMTL-code is rendered as expected:
- ordered item begin
- unordered item
- unordered item
- unordered item
ordered item continued ...
- next ordered item
Is this - in any way - possible in Twiki or do i have to circumvent this problem by directly inserting
HTML-code (as described above)?
- TWiki version:
- Perl version:
- Web server & version:
- Server OS:
- Web browser & version:
- Client OS:
--
BorisJakubith - 28 Mar 2003
Answer
TWiki's syntax aims for simplicity, unnested bullets are not supported. You'd need to to use HTML. There have been some discussions on that in the
Codev web.
--
PeterThoeny - 29 Mar 2003