diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-01-07 22:10:34 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-01-07 22:10:34 -0800 |
commit | 599327bee1eac3662ec2ab32e32d794246940e25 (patch) | |
tree | 5a9c70e3def591284a5c51205002c833d50ea440 /test/Tests | |
parent | c1d058aeb1c6a331a2cc22786ffaab17f7118ccd (diff) | |
download | pandoc-599327bee1eac3662ec2ab32e32d794246940e25.tar.gz |
Asciidoc writer: shorter delimiters for tables, blockquotes.
This matches asciidoctor reference docs.
Closes #4364.
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Writers/AsciiDoc.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Tests/Writers/AsciiDoc.hs b/test/Tests/Writers/AsciiDoc.hs index d31d4ffe2..ea61ed044 100644 --- a/test/Tests/Writers/AsciiDoc.hs +++ b/test/Tests/Writers/AsciiDoc.hs @@ -37,22 +37,22 @@ tests = [ testGroup "emphasis" [ test asciidoc "empty cells" $ simpleTable [] [[mempty],[mempty]] =?> unlines [ "[cols=\"\",]" - , "|====" + , "|===" , "|" , "|" - , "|====" + , "|===" ] , test asciidoc "multiblock cells" $ simpleTable [] [[para (text "Para 1") <> para (text "Para 2")]] =?> unlines [ "[cols=\"\",]" - , "|=====" + , "|===" , "a|" , "Para 1" , "" , "Para 2" , "" - , "|=====" + , "|===" ] ] ] |