aboutsummaryrefslogtreecommitdiff
path: root/test/fb2/reader/titles.native
blob: f98d0b00ccaef340b418ea84bcbf60982eb01906 (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
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" ]
      ]
    ]
  ]