aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Tests/Readers/RST.hs11
-rw-r--r--test/command/4581.md6
2 files changed, 11 insertions, 6 deletions
diff --git a/test/Tests/Readers/RST.hs b/test/Tests/Readers/RST.hs
index 906ed4ff9..540c5d45a 100644
--- a/test/Tests/Readers/RST.hs
+++ b/test/Tests/Readers/RST.hs
@@ -188,4 +188,15 @@ tests = [ "line block with blank line" =:
] =?>
para ("foo" <> note (para "bar"))
]
+ , testGroup "inlines"
+ [ "links can contain an URI without being parsed twice (#4581)" =:
+ "`http://loc <http://loc>`__" =?>
+ para (link "http://loc" "" "http://loc")
+ , "inline markup cannot be nested" =:
+ "**a*b*c**" =?>
+ para (strong "a*b*c")
+ , "bare URI parsing disabled inside emphasis (#4561)" =:
+ "*http://location*" =?>
+ para (emph (text "http://location"))
+ ]
]
diff --git a/test/command/4581.md b/test/command/4581.md
deleted file mode 100644
index b38ebaaf0..000000000
--- a/test/command/4581.md
+++ /dev/null
@@ -1,6 +0,0 @@
-```
-% pandoc -f rst -t native
-`http://loc <http://loc>`__
-^D
-[Para [Link ("",[],[]) [Str "http://loc"] ("http://loc","")]]
-```