aboutsummaryrefslogtreecommitdiff
path: root/test/odt/native/referenceToListItem.native
blob: 2665f979a6aebafd4a8565e9a0675d544c23a83d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pandoc
  Meta { unMeta = fromList [] }
  [ OrderedList
      ( 1 , Decimal , Period )
      [ [ Plain
            [ Span ( "anchor" , [] , [] ) [] , Str "A list item" ]
        ]
      , [ Plain [ Str "Another list item" ] ]
      ]
  , Para
      [ Str "A reference to list item "
      , Link ( "" , [] , [] ) [ Str "1." ] ( "#anchor" , "" )
      , Str "."
      ]
  , Para []
  , Para []
  ]