blob: 990fc3b3cd6c9c773a1a4febed9ce751dd9e02f0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
Pandoc
Meta { unMeta = fromList [] }
[ Para
[ Str "Here comes "
, Code ( "" , [] , [] ) "inlined code"
, Str " text and "
, Code ( "" , [] , [] ) "an another"
, Str " one."
]
]
|