diff options
Diffstat (limited to 'test/Tests')
-rw-r--r-- | test/Tests/Readers/DokuWiki.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Tests/Readers/DokuWiki.hs b/test/Tests/Readers/DokuWiki.hs index b8cd83c3c..f79b8b4a2 100644 --- a/test/Tests/Readers/DokuWiki.hs +++ b/test/Tests/Readers/DokuWiki.hs @@ -46,6 +46,9 @@ tests = [ testGroup "inlines" , "Monospaced" =: "''monospaced''" =?> para (code "monospaced") + , "Monospaced with nowiki" =: + "''%%monospaced%%''" =?> + para (code "monospaced") , "Combined" =: "**__//''combine''//__**" =?> para (strong $ underlineSpan $ emph $ code "combine") |