aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Writers
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2018-04-02 15:55:04 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2018-04-02 15:58:37 +0300
commitca78d93b408c660ee1ab753e165d07acd864b5a7 (patch)
tree851bc3175a45f629f1d774e6be250eb96b3e1699 /test/Tests/Writers
parentaca4137c4094ec921276bf50278dfc58db5634a3 (diff)
downloadpandoc-ca78d93b408c660ee1ab753e165d07acd864b5a7.tar.gz
Muse writer: place header IDs before header
See https://github.com/melmothx/text-amuse/issues/39
Diffstat (limited to 'test/Tests/Writers')
-rw-r--r--test/Tests/Writers/Muse.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Tests/Writers/Muse.hs b/test/Tests/Writers/Muse.hs
index eca7ed736..33ba2b1fb 100644
--- a/test/Tests/Writers/Muse.hs
+++ b/test/Tests/Writers/Muse.hs
@@ -254,8 +254,8 @@ tests = [ testGroup "block elements"
]
, "heading with ID" =:
headerWith ("bar", [], []) 2 (text "Foo") =?>
- unlines [ "** Foo"
- , "#bar"
+ unlines [ "#bar"
+ , "** Foo"
]
]
, "horizontal rule" =: horizontalRule =?> "----"