Jean-Christian Imbeault wrote:
The following wiki text:
#a text #b text
Gives
- a
text
- b
text
I would like my list numbering to keep going (1, 2 ...). I realize the problem is because of the new line. However I want the entries under each list item to have an example in a nice box (hence the leading space). However I cannot find a way to achieve this that keeps the list number from restarting at 1 every time.
Is there an easy way to achieve this?
Thanks,
Jc
Hello,
The problem is that in wiki syntax the list item is stopped by a new line. You probably want to switch to pure html:
<ol>
<li> a<br /> text </li>
<li> b<br /> text </li>
</ol>
Not sure if ol and li tags are allowed though :(