1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Pandoc
Meta { unMeta = fromList [] }
[ Header
1
( "a-chapter" , [] , [] )
[ Span ( "anchor" , [] , [] ) [] , Str "A chapter" ]
, Para [ Str "Some text." ]
, Header
1 ( "another-chapter" , [] , [] ) [ Str "Another chapter" ]
, Para [ Str "A reference to ." ]
, Para
[ Str "A reference to "
, Link
( "" , [] , [] ) [ Str "A chapter" ] ( "#anchor" , "" )
, Str "."
]
]
|