aboutsummaryrefslogtreecommitdiff
path: root/test/latex-reader.native
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-11-07 21:08:20 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2021-11-07 21:08:20 -0800
commitcc46667953b609d87bbf5611f50843871b304a0c (patch)
treeedfc1a3ccb237d6dd5cfa85f3ae68814bcfce8f3 /test/latex-reader.native
parent881b45209e8fd70079e409d05fa7402741501940 (diff)
downloadpandoc-cc46667953b609d87bbf5611f50843871b304a0c.tar.gz
LaTeX reader: add 'uri' class when parsing `\url`.
Closes #7672.
Diffstat (limited to 'test/latex-reader.native')
-rw-r--r--test/latex-reader.native6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/latex-reader.native b/test/latex-reader.native
index 2be447c0d..32ee86899 100644
--- a/test/latex-reader.native
+++ b/test/latex-reader.native
@@ -1868,7 +1868,7 @@ Pandoc
, Str "ampersand:"
, Space
, Link
- ( "" , [] , [] )
+ ( "" , [ "uri" ] , [] )
[ Str "http://example.com/?foo=1&bar=2" ]
( "http://example.com/?foo=1&bar=2" , "" )
]
@@ -1878,7 +1878,7 @@ Pandoc
]
, [ Para
[ Link
- ( "" , [] , [] )
+ ( "" , [ "uri" ] , [] )
[ Str "http://example.com/" ]
( "http://example.com/" , "" )
]
@@ -1902,7 +1902,7 @@ Pandoc
[ Str "Blockquoted:"
, Space
, Link
- ( "" , [] , [] )
+ ( "" , [ "uri" ] , [] )
[ Str "http://example.com/" ]
( "http://example.com/" , "" )
]