Index: lib/src/prism/tests/languages/markdown/list_feature.test |
diff --git a/lib/src/prism/tests/languages/markdown/list_feature.test b/lib/src/prism/tests/languages/markdown/list_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bfc9f8e35928fb28721bc1e91482f5e61caa00b9 |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/markdown/list_feature.test |
@@ -0,0 +1,22 @@ |
+* foo |
++ bar |
+- baz |
+ |
+1. foo |
+ 2. bar |
+42. baz |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["list", "*"], " foo\r\n", |
+ ["list", "+"], " bar\r\n", |
+ ["list", "-"], " baz\r\n\r\n", |
+ ["list", "1."], " foo\r\n ", |
+ ["list", "2."], " bar\r\n", |
+ ["list", "42."], " baz" |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for list symbols. |