1. Fix bug in expected for nested ordered lists
2. Add case with carriage return and new line after a list
Этот коммит содержится в:
Eric Sethna
2015-12-03 14:55:31 -07:00
родитель e1d9f4b621
Коммит b501ed515c

Просмотреть файл

@@ -34,7 +34,7 @@ Verify that all list types render as expected.
2. Charlie
3. Delta
1. Echo
1. Foxtrot
2. Foxtrot
```
**Actual:**
@@ -175,3 +175,18 @@ Verify that all list types render as expected.
1. One
2. Two
### Carriage Return and New Line After a List
**Expected:**
```
1. One
- Two
This text should be on a new line.
```
**Actual:**
1. One
- Two
This text should be on a new line.