summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-12-03 14:10:33 -0800
committerCorey Hulen <corey@hulen.com>2015-12-03 14:10:33 -0800
commitd5d66214db6c108eb94cf2e43c0c4538cdb5d7ae (patch)
tree04dc4fad0afe529f4bef92bf7b4fc82b4eb60bb5
parentfb645416f01222dacbf096cfb5cf9cbe4313e82e (diff)
parentb501ed515c9f264d0379ae94a7f1b73e0245d598 (diff)
downloadchat-d5d66214db6c108eb94cf2e43c0c4538cdb5d7ae.tar.gz
chat-d5d66214db6c108eb94cf2e43c0c4538cdb5d7ae.tar.bz2
chat-d5d66214db6c108eb94cf2e43c0c4538cdb5d7ae.zip
Merge pull request #1610 from esethna/patch-37
Update test-markdown-lists.md
-rw-r--r--doc/developer/tests/test-markdown-lists.md17
1 files changed, 16 insertions, 1 deletions
diff --git a/doc/developer/tests/test-markdown-lists.md b/doc/developer/tests/test-markdown-lists.md
index 905f5b0d5..905350d31 100644
--- a/doc/developer/tests/test-markdown-lists.md
+++ b/doc/developer/tests/test-markdown-lists.md
@@ -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.
+