aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-08-20 09:54:42 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-08-20 09:54:42 -0700
commit07d847a9100924e3c9bec1e536e2ad2b4b57162e (patch)
tree85de263315601ffb0f768e53e6463737da549ab3 /test
parent9879953a4f385be65c0c64d02cd281a4ad676d0d (diff)
downloadpandoc-07d847a9100924e3c9bec1e536e2ad2b4b57162e.tar.gz
RST reader: Fix `:literal:` includes.
These should create code blocks, not insert raw RST. Closes #7513.
Diffstat (limited to 'test')
-rw-r--r--test/command/7436.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/command/7436.md b/test/command/7436.md
index ad4cb8c2f..fd6e51aa8 100644
--- a/test/command/7436.md
+++ b/test/command/7436.md
@@ -9,6 +9,6 @@
.. include:: command/three.txt
^D
[CodeBlock ("",[""],[("code","")]) "1st line.\n2nd line.\n3rd line.\n"
-,RawBlock (Format "rst") "1st line.\n2nd line.\n3rd line.\n"
+,CodeBlock ("",[""],[("literal","")]) "1st line.\n2nd line.\n3rd line.\n"
,Para [Str "1st",Space,Str "line.",SoftBreak,Str "2nd",Space,Str "line.",SoftBreak,Str "3rd",Space,Str "line."]]
```