summaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2018-01-18 15:35:43 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2018-01-18 15:35:43 +0300
commita516198d47bcc31e72e56e04bde976d9178142aa (patch)
treea0acc3492b4ce79cdbf8e78e3da49015ddc0e206 /test/Tests
parent5f57094a47c18d1849f7cd5e9306bf05d6187881 (diff)
Muse reader: fix parsing of code at the beginning of paragraph
Diffstat (limited to 'test/Tests')
-rw-r--r--test/Tests/Readers/Muse.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Tests/Readers/Muse.hs b/test/Tests/Readers/Muse.hs
index 948df2ac2..edbb3b290 100644
--- a/test/Tests/Readers/Muse.hs
+++ b/test/Tests/Readers/Muse.hs
@@ -153,6 +153,9 @@ tests =
] =?>
para "foo =bar" <>
para "baz= foo"
+
+ , "Code at the beginning of paragraph but not first column" =:
+ " - =foo=" =?> bulletList [ para $ code "foo" ]
]
, "Code tag" =: "<code>foo(bar)</code>" =?> para (code "foo(bar)")