diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-09-11 19:24:00 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-09-11 19:24:00 +0300 |
commit | 3f8891b26ffd27d5d71318a5b16bfc07d29daadc (patch) | |
tree | 0e231a8f0010c386fcd1c64dbda1f618711a4598 /test/Tests | |
parent | ca420983aa83a9988ec3c0093c494ca4357fab7f (diff) | |
download | pandoc-3f8891b26ffd27d5d71318a5b16bfc07d29daadc.tar.gz |
Enable tables in HTML round trip test
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Readers/HTML.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/Tests/Readers/HTML.hs b/test/Tests/Readers/HTML.hs index 1f7f2f970..21e004858 100644 --- a/test/Tests/Readers/HTML.hs +++ b/test/Tests/Readers/HTML.hs @@ -20,7 +20,6 @@ htmlNativeDivs :: Text -> Pandoc htmlNativeDivs = purely $ readHtml def { readerExtensions = enableExtension Ext_native_divs $ readerExtensions def } makeRoundTrip :: Block -> Block -makeRoundTrip Table{} = Para [Str "table was here"] makeRoundTrip CodeBlock{} = Para [Str "code block was here"] makeRoundTrip LineBlock{} = Para [Str "line block was here"] makeRoundTrip RawBlock{} = Para [Str "raw block was here"] |