aboutsummaryrefslogtreecommitdiff
path: root/test/fb2/reader/titles.native
blob: 74669d8480751a80c9a24160fff6e6a362de936d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Pandoc
  Meta { unMeta = fromList [] }
  [ Header
      1 ( "" , [] , [] ) [ Str "Body" , Space , Str "title" ]
  , Div
      ( "" , [ "section" ] , [] )
      [ Header
          2 ( "" , [] , [] ) [ Str "Section" , Space , Str "title" ]
      , Div
          ( "" , [ "section" ] , [] )
          [ Header
              3
              ( "" , [] , [] )
              [ Str "Subsection"
              , Space
              , Str "title"
              , LineBreak
              , Str "with"
              , Space
              , Str "multiple"
              , Space
              , Str "paragraphs"
              ]
          ]
      , Div
          ( "" , [ "section" ] , [] )
          [ Header
              3
              ( "" , [] , [] )
              [ Str "Another"
              , Space
              , Str "subsection"
              , Space
              , Str "title"
              ]
          ]
      ]
  ]