aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/src/markdown/ParserTest.kt8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/src/markdown/ParserTest.kt b/test/src/markdown/ParserTest.kt
index 20b95625..201708c6 100644
--- a/test/src/markdown/ParserTest.kt
+++ b/test/src/markdown/ParserTest.kt
@@ -21,6 +21,10 @@ public class ParserTest {
runTestFor("text and string")
}
+ Test fun textWithColon() {
+ runTestFor("text and string: cool!")
+ }
+
Test fun link() {
runTestFor("text [links]")
}
@@ -80,6 +84,10 @@ number two
runTestFor("*text*")
}
+ Test fun directive() {
+ runTestFor("A text {code with.another.value} with directive")
+ }
+
Test fun emphAndEmptySection() {
runTestFor("*text* \$sec:")
}