diff options
author | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-02 12:52:39 +0300 |
---|---|---|
committer | Alexander Krotov <ilabdsf@gmail.com> | 2018-03-02 12:52:39 +0300 |
commit | a01573692af91f54b5fe6670e4a07fb6a3935181 (patch) | |
tree | 19ab7a072f699539a534e3277f1261a65e4a4b53 /test/Tests | |
parent | 64f8c5d99cb7040479d6baf8950ef991fa23acae (diff) | |
download | pandoc-a01573692af91f54b5fe6670e4a07fb6a3935181.tar.gz |
Muse reader: enable <literal> tags even if amuse extension is enabled
Amusewiki disables <literal> tags for security reasons.
If user wants similar behavior in pandoc, RawBlocks and RawInlines
can be removed or replaced with filters.
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Readers/Muse.hs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/Tests/Readers/Muse.hs b/test/Tests/Readers/Muse.hs index f326b39d4..4528ac4b1 100644 --- a/test/Tests/Readers/Muse.hs +++ b/test/Tests/Readers/Muse.hs @@ -207,9 +207,6 @@ tests = [ test emacsMuse "Inline literal" ("Foo<literal style=\"html\">lit</literal>bar" =?> para (text "Foo" <> rawInline "html" "lit" <> text "bar")) - , "No literal in Text::Amuse" =: - "Foo<literal style=\"html\">lit</literal>bar" =?> - para "Foo<literal style=\"html\">lit</literal>bar" ] ] @@ -475,12 +472,6 @@ tests = , "</literal>" ] =?> rawBlock "latex" "\\newpage") - , "No literal blocks in Text::Amuse" =: - T.unlines [ "<literal style=\"latex\">" - , "\\newpage" - , "</literal>" - ] =?> - para "<literal style=\"latex\">\n\\newpage\n</literal>" ] , "Center" =: T.unlines [ "<center>" |