aboutsummaryrefslogtreecommitdiff
path: root/test/command/4054.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/4054.md')
-rw-r--r--test/command/4054.md15
1 files changed, 11 insertions, 4 deletions
diff --git a/test/command/4054.md b/test/command/4054.md
index 3689773c4..81c6e4012 100644
--- a/test/command/4054.md
+++ b/test/command/4054.md
@@ -2,13 +2,20 @@
% pandoc -t native -s -M title=New
% Old
^D
-Pandoc (Meta {unMeta = fromList [("title",MetaString "New")]})
-[]
+Pandoc
+ Meta
+ { unMeta = fromList [ ( "title" , MetaString "New" ) ] }
+ []
```
```
% pandoc -t native -s -M foo=1 -M foo=2
^D
-Pandoc (Meta {unMeta = fromList [("foo",MetaList [MetaString "1",MetaString "2"])]})
-[]
+Pandoc
+ Meta
+ { unMeta =
+ fromList
+ [ ( "foo" , MetaList [ MetaString "1" , MetaString "2" ] ) ]
+ }
+ []
```