Index: lib/src/prism/tests/languages/wiki/emphasis_feature.test |
diff --git a/lib/src/prism/tests/languages/wiki/emphasis_feature.test b/lib/src/prism/tests/languages/wiki/emphasis_feature.test |
new file mode 100644 |
index 0000000000000000000000000000000000000000..952dacbac432b13ca92b089478e031f0c750c8cc |
--- /dev/null |
+++ b/lib/src/prism/tests/languages/wiki/emphasis_feature.test |
@@ -0,0 +1,27 @@ |
+'''''foo''''' |
+'''bar''' |
+''baz'' |
+ |
+---------------------------------------------------- |
+ |
+[ |
+ ["emphasis", [ |
+ ["punctuation", "'''''"], |
+ ["bold italic", "foo"], |
+ ["punctuation", "'''''"] |
+ ]], |
+ ["emphasis", [ |
+ ["punctuation", "'''"], |
+ ["bold", "bar"], |
+ ["punctuation", "'''"] |
+ ]], |
+ ["emphasis", [ |
+ ["punctuation", "''"], |
+ ["italic", "baz"], |
+ ["punctuation", "''"] |
+ ]] |
+] |
+ |
+---------------------------------------------------- |
+ |
+Checks for bold and italic. |