aboutsummaryrefslogtreecommitdiff
path: root/test/rtf/formatting.native
blob: 0ed519bff89f3b5995bb76aac8642e131bbe6bc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pandoc
  Meta
    { unMeta =
        fromList
          [ ( "operator" , MetaInlines [ Str "John MacFarlane" ] ) ]
    }
  [ Para
      [ Str "This is a test of FORMATTING. This is hidden: ." ]
  , Para [ SmallCaps [ Str "Small Caps" ] ]
  , Para [ Strong [ Str "bold" ] ]
  , Para [ Emph [ Str "italics" ] ]
  , Para
      [ Strong [ Str "bold " , Emph [ Str "and italics" ] ] ]
  , Para [ Underline [ Str "underlined" ] ]
  , Para [ Strikeout [ Str "strikeout" ] ]
  , Para [ Str "x" , Superscript [ Str "superscript" ] ]
  , Para [ Str "x" , Subscript [ Str "subscript" ] ]
  ]