aboutsummaryrefslogtreecommitdiff
path: root/test/dokuwiki_inline_formatting.native
blob: a2f62d5b5832f0d96283be8f389ad23ae2676b4f (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
Pandoc
  Meta { unMeta = fromList [] }
  [ Para
      [ Str "Regular text "
      , Emph [ Str "italics" ]
      , Str " "
      , Strong [ Str "bold " , Emph [ Str "bold italics" ] ]
      , Str "."
      ]
  , Para
      [ Str "This is "
      , SmallCaps [ Str "Small Caps" ]
      , Str ", and this is "
      , Strikeout [ Str "strikethrough" ]
      , Str "."
      ]
  , Para
      [ Str "Some people use "
      , Span
          ( "" , [] , [ ( "underline" , "single" ) ] )
          [ Str "single underlines for " , Emph [ Str "emphasis" ] ]
      , Str "."
      ]
  , Para
      [ Str "Above the line is "
      , Superscript [ Str "superscript" ]
      , Str " and below the line is "
      , Subscript [ Str "subscript" ]
      , Str "."
      ]
  , Para [ Str "A line" , LineBreak , Str "break." ]
  , Para [ Str "hello // world ** from __ me" ]
  , Para
      [ Code ( "" , [] , [] ) "hello // world ** from __ me" ]
  ]