Project

General

Profile

Wiki list formatting?

Added by Michael Wu about 15 years ago

Is there any way to do multilevel lists with ordered lists?

When I do something like:

# Test1
* Hello
# Test2
* Hi

I get:

  1. Test1
    • Hello
      1. Test2
        • Hi

When I want:

1. Test1
    * Hello
2. Test2
    * Hi

Also, separating the items doesn't help either

# Test1
* Hello

# Test2
* Hi

Gets:

  1. Test1
    • Hello
  1. Test2
    • Hi

Replies (1)

RE: Wiki list formatting? - Added by Carsten Schurig about 15 years ago

You have to write

# Test1
** Hello
# Test2
** Hi

This results in:

  1. Test1
    • Hello
  2. Test2
    • Hi

The levels are determined by the numbers of "#" and "*" ;)

    (1-1/1)