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