mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
2.5 KiB
2.5 KiB
Markdown List Testing
Verify that all list types render as expected.
Single-item Ordered List
Expected:
7. Single Item
Actual:
7. Single Item
Multi-item Ordered List
Expected:
1. One
2. Two
3. Three
Actual:
- One
- Two
- Three
Nested Ordered List
Expected:
1. Alpha
1. Bravo
2. Charlie
3. Delta
1. Echo
2. Foxtrot
Actual:
- Alpha
- Bravo
- Charlie
- Delta
- Echo
- Foxtrot
Single-item Unordered List
Expected:
• Single Item
Actual:
- Single Item
Multi-item Unordered List
Expected:
• One
• Two
• Three
Actual:
- One
- Two
- Three
Nested Unordered List
Expected:
• Alpha
• Bravo
• Charlie
• Delta
• Echo
• Foxtrot
Actual:
- Alpha
- Bravo
- Charlie
- Delta
- Echo
- Foxtrot
Mixed List Starting Ordered
Expected:
1. One
2. Two
3. Three
Actual:
- One
- Two
- Three
Mixed List Starting Unordered
Expected:
• Monday
• Tuesday
• Wednesday
Actual:
- Monday
- Tuesday
- Wednesday
Nested Mixed List
Expected:
• Alpha
1. Bravo
• Charlie
• Delta
• Echo
• Foxtrot
• Golf
1. Hotel
• India
1. Juliet
2. Kilo
• Lima
• Mike
1. November
1. Oscar
1. Papa
Actual:
- Alpha
- Bravo
- Charlie
- Delta
- Bravo
- Echo
- Foxtrot
- Golf
- Hotel
- India 2. Juliet 3. Kilo
- Lima
- Golf
- Mike
- November 4. Oscar 5. Papa
Ordered Lists Separated by Carriage Returns
Expected:
1. One
• Two
1. One
2. Two
Actual:
- One
- Two
- One
- Two
Carriage Return and New Line After a List
Expected:
1. One
- Two
This text should be on a new line.
Actual:
- One
- Two This text should be on a new line.
Expected:
List:
- One
- Two
This line should have a line break above it.
Actual:
List:
- One
- Two
This line should have a line break above it.
Task Lists
Expected:
[ ] One
[ ] Subpoint one
- Normal Bullet
[ ] Two
[x] Completed item
Actual:
- One
- Subpoint one
- Normal Bullet
- Two
- Completed item
Numbered Task Lists
Expected:
1. [ ] One
2. [ ] Two
3. [x] Completed item
Actual:
- One
- Two
- Completed item