aboutsummaryrefslogtreecommitdiff
path: root/test/command/5271.md
blob: 1d8d453275240121a6ff0b98793ac949c5851520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
```
% pandoc -f markdown -t native -s
---
abstract: |
  This is the abstract.

  It consists of two paragraphs.
...
^D
Pandoc
  Meta
    { unMeta =
        fromList
          [ ( "abstract"
            , MetaBlocks
                [ Para [ Str "This is the abstract." ]
                , Para [ Str "It consists of two paragraphs." ]
                ]
            )
          ]
    }
  []
```