aboutsummaryrefslogtreecommitdiff
path: root/test/command/3755.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/3755.md')
-rw-r--r--test/command/3755.md52
1 files changed, 25 insertions, 27 deletions
diff --git a/test/command/3755.md b/test/command/3755.md
index b9f38d441..e89eaec35 100644
--- a/test/command/3755.md
+++ b/test/command/3755.md
@@ -6,18 +6,17 @@ date: '22. Juni 2017'
---
^D
Pandoc
- ( Meta
- { unMeta = fromList
- [
- ( "date"
- , MetaInlines
- [ Str "22.", Space, Str "Juni", Space, Str "2017" ]
- )
- ,
- ( "title", MetaInlines [ Str "Titel" ] )
- ]
+ Meta
+ { unMeta =
+ fromList
+ [ ( "date"
+ , MetaInlines
+ [ Str "22." , Space , Str "Juni" , Space , Str "2017" ]
+ )
+ , ( "title" , MetaInlines [ Str "Titel" ] )
+ ]
}
- ) []
+ []
```
```
@@ -29,23 +28,22 @@ date: |
---
^D
Pandoc
- ( Meta
- { unMeta = fromList
- [
- ( "date"
- , MetaBlocks
- [ OrderedList
- ( 22, Decimal, Period )
- [ [ Plain [ Str "Juni", Space, Str "2017" ] ] ]
+ Meta
+ { unMeta =
+ fromList
+ [ ( "date"
+ , MetaBlocks
+ [ OrderedList
+ ( 22 , Decimal , Period )
+ [ [ Plain [ Str "Juni" , Space , Str "2017" ] ] ]
+ ]
+ )
+ , ( "title"
+ , MetaBlocks
+ [ Div ( "" , [] , [] ) [ Plain [ Str "foo" ] ] ]
+ )
]
- )
- ,
- ( "title"
- , MetaBlocks
- [ Div ( "", [], [] ) [ Plain [ Str "foo" ] ] ]
- )
- ]
}
- ) []
+ []
```