Forums » Help »
Wiki list formatting?
Added by Michael Wu over 1 year ago
Is there any way to do multilevel lists with ordered lists?
When I do something like:
# Test1
* Hello
# Test2
* Hi
I get:
- Test1
When I want:
1. Test1
* Hello
2. Test2
* Hi
Also, separating the items doesn't help either
# Test1
* Hello
# Test2
* Hi
Gets:
- Test1
- Test2
You have to write
# Test1
** Hello
# Test2
** Hi
This results in:
- Test1
- Test2
The levels are determined by the numbers of "#" and "*" ;)