diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2020-12-13 14:09:59 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2020-12-13 14:09:59 +0100 |
commit | 00031fc809117cb436397aba83a41ca1d4056f61 (patch) | |
tree | 1474e3890fa42dcd90b1fe2b81c75c2c78420ffc /test/Tests | |
parent | 8cf58d96e0801d8073e118f05279a9f473efcee0 (diff) | |
download | pandoc-00031fc809117cb436397aba83a41ca1d4056f61.tar.gz |
Docx writer: keep raw openxml strings verbatim.
Closes: #6933
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Writers/Docx.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Tests/Writers/Docx.hs b/test/Tests/Writers/Docx.hs index 8f051b4b7..66a5c3d36 100644 --- a/test/Tests/Writers/Docx.hs +++ b/test/Tests/Writers/Docx.hs @@ -128,6 +128,16 @@ tests = [ testGroup "inlines" def "docx/codeblock.native" "docx/golden/codeblock.docx" + , docxTest + "raw OOXML blocks" + def + "docx/raw-blocks.native" + "docx/golden/raw-blocks.docx" + , docxTest + "raw bookmark markers" + def + "docx/raw-bookmarks.native" + "docx/golden/raw-bookmarks.docx" ] , testGroup "track changes" [ docxTest |