Pandoc
Meta { unMeta = fromList [] }
[ Header 1 ( "header" , [] , [] ) [ Str "header" ]
, Header
2
( "header_level_two" , [] , [] )
[ Str "header level two" ]
, Header
3 ( "header_level_3" , [] , [] ) [ Str "header level 3" ]
, Header
4
( "header_level_four" , [] , [] )
[ Str "header " , Emph [ Str "level" ] , Str " four" ]
, Header
5 ( "header_level_5" , [] , [] ) [ Str "header level 5" ]
, Header
6 ( "header_level_6" , [] , [] ) [ Str "header level 6" ]
, Para [ Str "======= not a header ========" ]
, Para
[ Code ( "" , [] , [] ) "==\160not\160a\160header\160==" ]
, Header
2 ( "emph_and_strong" , [] , [] ) [ Str "emph and strong" ]
, Para
[ Emph [ Str "emph" ] , Str " " , Strong [ Str "strong" ] ]
, Para [ Strong [ Emph [ Str "strong and emph" ] ] ]
, Para
[ Strong [ Emph [ Str "emph inside" ] , Str " strong" ] ]
, Para
[ Strong [ Str "strong with " , Emph [ Str "emph" ] ] ]
, Para
[ Emph [ Strong [ Str "strong inside" ] , Str " emph" ] ]
, Header
2 ( "horizontal_rule" , [] , [] ) [ Str "horizontal rule" ]
, Para [ Str "top" ]
, HorizontalRule
, Para [ Str "bottom" ]
, HorizontalRule
, Header 2 ( "nowiki" , [] , [] ) [ Str "nowiki" ]
, Para [ Str "''not emph''" ]
, Header 2 ( "strikeout" , [] , [] ) [ Str "strikeout" ]
, Para
[ Strikeout [ Str "This is " , Emph [ Str "struck out" ] ] ]
, Header 2 ( "entities" , [] , [] ) [ Str "entities" ]
, Para [ Str "hi & low" ]
, Para [ Str "hi & low" ]
, Para [ Str "G\246del" ]
, Para [ Str "\777\2730" ]
, Header 2 ( "comments" , [] , [] ) [ Str "comments" ]
, Para [ Str "inline comment" ]
, Para [ Str "between blocks" ]
, Header 2 ( "linebreaks" , [] , [] ) [ Str "linebreaks" ]
, Para [ Str "hi" , LineBreak , Str "there" ]
, Para [ Str "hi" , LineBreak , Str "there" ]
, Header 2 ( "indents" , [] , [] ) [ Str ": indents" ]
, Para [ Str "hi" ]
, DefinitionList [ ( [] , [ [ Plain [ Str "there" ] ] ] ) ]
, Para [ Str "bud" ]
, Para [ Str "hi" ]
, DefinitionList
[ ( []
, [ [ DefinitionList
[ ( [] , [ [ Plain [ Str "there" ] ] ] ) ]
]
]
)
]
, Para [ Str "bud" ]
, Header 2 ( "p_tags" , [] , [] ) [ Str "p tags" ]
, Para [ Str "hi there" ]
, Para [ Str "bud" ]
, Para [ Str "another" ]
, Header 2 ( "raw_html" , [] , [] ) [ Str "raw html" ]
, Para
[ Str "hi "
, RawInline (Format "html") ""
, Emph [ Str "there" ]
, RawInline (Format "html") ""
, Str "."
]
, Para
[ RawInline (Format "html") ""
, Str "inserted"
, RawInline (Format "html") ""
]
, RawBlock (Format "html") "
"
, Para [ Str "hi " , Emph [ Str "there" ] ]
, RawBlock (Format "html") "
"
, Header
2 ( "sup_sub_del" , [] , [] ) [ Str "sup, sub, del" ]
, Para
[ Str "H"
, Subscript [ Str "2" ]
, Str "O base"
, Superscript [ Emph [ Str "exponent" ] ]
, SoftBreak
, Strikeout [ Str "hello" ]
]
, Header 2 ( "inline_code" , [] , [] ) [ Str "inline code" ]
, Para
[ Code ( "" , [] , [] ) "*\8594*"
, Str " "
, Code ( "" , [] , [] ) "typed"
, Str " "
, Code ( "" , [ "haskell" ] , [] ) ">>="
]
, Header 2 ( "code_blocks" , [] , [] ) [ Str "code blocks" ]
, CodeBlock
( "" , [] , [] )
"case xs of\n (_:_) -> reverse xs\n [] -> ['*']"
, CodeBlock
( "" , [ "haskell" ] , [] )
"case xs of\n (_:_) -> reverse xs\n [] -> ['*']"
, CodeBlock
( ""
, [ "ruby" , "numberLines" ]
, [ ( "startFrom" , "100" ) ]
)
"widgets.each do |w|\n print w.price\nend"
, Header
2 ( "block_quotes" , [] , [] ) [ Str "block quotes" ]
, Para [ Str "Regular paragraph" ]
, BlockQuote
[ Para [ Str "This is a block quote." ]
, Para [ Str "With two paragraphs." ]
]
, Para [ Str "Nother paragraph." ]
, Header
2 ( "external_links" , [] , [] ) [ Str "external links" ]
, Para
[ Link
( "" , [] , [] )
[ Emph [ Str "Google" ] , Str " search engine" ]
( "http://google.com" , "" )
]
, Para
[ Link
( "" , [] , [] )
[ Str "http://pandoc.org" ]
( "http://pandoc.org" , "" )
]
, Para
[ Link
( "" , [] , [] ) [ Str "1" ] ( "http://google.com" , "" )
, Str " "
, Link
( "" , [] , [] ) [ Str "2" ] ( "http://yahoo.com" , "" )
]
, Para
[ Link
( "" , [] , [] )
[ Str "email me" ]
( "mailto:info@example.org" , "" )
]
, Header
2 ( "internal_links" , [] , [] ) [ Str "internal links" ]
, Para
[ Link
( "" , [] , [] ) [ Str "Help" ] ( "Help" , "wikilink" )
]
, Para
[ Link
( "" , [] , [] )
[ Str "the help page" ]
( "Help" , "wikilink" )
]
, Para
[ Link
( "" , [] , [] ) [ Str "Helpers" ] ( "Help" , "wikilink" )
]
, Para
[ Link
( "" , [] , [] ) [ Str "Help" ] ( "Help" , "wikilink" )
, Str "ers"
]
, Para
[ Link
( "" , [] , [] )
[ Str "Contents" ]
( "Help:Contents" , "wikilink" )
]
, Para
[ Link
( "" , [] , [] )
[ Str "#My anchor" ]
( "#My_anchor" , "wikilink" )
]
, Para
[ Link
( "" , [] , [] )
[ Str "and text" ]
( "Page#with_anchor" , "wikilink" )
]
, Header 2 ( "images" , [] , [] ) [ Str "images" ]
, Para
[ Image
( "" , [] , [] )
[ Str "caption" ]
( "example.jpg" , "fig:caption" )
]
, Para
[ Image
( "" , [] , [] )
[ Str "the "
, Emph [ Str "caption" ]
, Str " with "
, Link
( "" , [] , [] )
[ Str "external link" ]
( "http://google.com" , "" )
]
( "example.jpg" , "fig:the caption with external link" )
]
, Para
[ Image
( "" , [] , [ ( "width" , "30" ) , ( "height" , "40" ) ] )
[ Str "caption" ]
( "example.jpg" , "fig:caption" )
]
, Para
[ Image
( "" , [] , [ ( "width" , "30" ) ] )
[ Str "caption" ]
( "example.jpg" , "fig:caption" )
]
, Para
[ Image
( "" , [] , [ ( "width" , "30" ) ] )
[ Str "caption" ]
( "example.jpg" , "fig:caption" )
]
, Para
[ Image
( "" , [] , [] )
[ Str "example.jpg" ]
( "example.jpg" , "fig:example.jpg" )
]
, Para
[ Image
( "" , [] , [] )
[ Str "example_es.jpg" ]
( "example_es.jpg" , "fig:example_es.jpg" )
]
, Header 2 ( "lists" , [] , [] ) [ Str "lists" ]
, BulletList
[ [ Plain [ Str "Start each line" ] ]
, [ Plain [ Str "with an asterisk (*)." ]
, BulletList
[ [ Plain [ Str "More asterisks gives deeper" ]
, BulletList [ [ Plain [ Str "and deeper levels." ] ] ]
]
]
]
, [ Plain
[ Str "Line breaks"
, LineBreak
, Str "don't break levels."
]
, BulletList
[ [ BulletList
[ [ Plain
[ Str "But jumping levels creates empty space."
]
]
]
]
]
]
]
, Para [ Str "Any other start ends the list." ]
, BulletList
[ [ BulletList [ [ Plain [ Str "two" ] ] ] ]
, [ Plain [ Str "one" ] ]
]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "Start each line" ] ]
, [ Plain [ Str "with a number sign (#)." ]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "More number signs gives deeper" ]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "and deeper" ] ]
, [ Plain [ Str "levels." ] ]
]
]
]
]
, [ Plain
[ Str "Line breaks"
, LineBreak
, Str "don't break levels."
]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain
[ Str "But jumping levels creates empty space."
]
]
]
]
]
]
, [ Plain [ Str "Blank lines" ] ]
]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "end the list and start another." ] ] ]
, Para
[ Str "Any other start also"
, SoftBreak
, Str "ends the list."
]
, DefinitionList
[ ( [ Str "item 1" ]
, [ [ Plain [ Str "definition 1" ] ] ]
)
, ( [ Str "item 2" ]
, [ [ Plain [ Str "definition 2-1" ] ]
, [ Plain [ Str "definition 2-2" ] ]
]
)
]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "one" ] ]
, [ Plain [ Str "two" ]
, BulletList
[ [ Plain [ Str "two point one" ] ]
, [ Plain [ Str "two point two" ] ]
]
]
, [ Plain [ Str "three" ]
, DefinitionList
[ ( [ Str "three item one" ]
, [ [ Plain [ Str "three def one" ] ] ]
)
]
]
, [ Plain [ Str "four" ]
, DefinitionList
[ ( []
, [ [ Plain [ Str "four def one" ] ]
, [ Plain [ Str "this looks like a continuation" ] ]
, [ Plain [ Str "and is often used" ] ]
, [ Plain [ Str "instead" , LineBreak , Str "of
" ]
]
]
)
]
]
, [ Plain
[ RawInline
(Format "mediawiki")
"{{{template\n|author=John\n|title=My Book\n}}}"
]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "five sub 1" ]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "five sub 1 sub 1" ] ] ]
]
, [ Plain [ Str "five sub 2" ] ]
]
]
]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "list item " , Emph [ Str "emph" ] ]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "list item B1" ] ]
, [ Plain [ Str "list item B2" ] ]
]
, Para [ Str "continuing list item A1" ]
]
, [ Plain [ Str "list item A2" ] ]
]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "abc" ] ]
, [ Plain [ Str "def" ] ]
, [ Plain [ Str "ghi" ] ]
]
, OrderedList
( 9 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "Amsterdam" ] ]
, [ Plain [ Str "Rotterdam" ] ]
, [ Plain [ Str "The Hague" ] ]
]
, Header 2 ( "math" , [] , [] ) [ Str "math" ]
, Para
[ Str "Here is some "
, Math InlineMath "x=\\frac{y^\\pi}{z}"
, Str "."
]
, Para
[ Str "With spaces: "
, Math InlineMath "x=\\frac{y^\\pi}{z}"
, Str "."
]
, Header
2
( "preformatted_blocks" , [] , [] )
[ Str "preformatted blocks" ]
, Para
[ Code
( "" , [] , [] )
"Start\160each\160line\160with\160a\160space."
, LineBreak
, Code ( "" , [] , [] ) "Text\160is\160"
, Strong [ Code ( "" , [] , [] ) "preformatted" ]
, Code ( "" , [] , [] ) "\160and"
, LineBreak
, Emph [ Code ( "" , [] , [] ) "markups" ]
, Code ( "" , [] , [] ) "\160"
, Strong [ Emph [ Code ( "" , [] , [] ) "can" ] ]
, Code ( "" , [] , [] ) "\160be\160done."
]
, Para
[ Code
( "" , [] , [] ) "\160hell\160\160\160\160\160\160yeah"
]
, Para
[ Code
( "" , [] , [] )
"Start\160with\160a\160space\160in\160the\160first\160column,"
, LineBreak
, Code ( "" , [] , [] ) "(before\160the\160)."
, LineBreak
, LineBreak
, Code
( "" , [] , [] )
"Then\160your\160block\160format\160will\160be"
, LineBreak
, Code ( "" , [] , [] ) "\160\160\160\160maintained."
, LineBreak
, LineBreak
, Code
( "" , [] , [] )
"This\160is\160good\160for\160copying\160in\160code\160blocks:"
, LineBreak
, LineBreak
, Code ( "" , [] , [] ) "def\160function():"
, LineBreak
, Code
( "" , [] , [] )
"\160\160\160\160\"\"\"documentation\160string\"\"\""
, LineBreak
, LineBreak
, Code ( "" , [] , [] ) "\160\160\160\160if\160True:"
, LineBreak
, Code
( "" , [] , [] )
"\160\160\160\160\160\160\160\160print\160True"
, LineBreak
, Code ( "" , [] , [] ) "\160\160\160\160else:"
, LineBreak
, Code
( "" , [] , [] )
"\160\160\160\160\160\160\160\160print\160False"
]
, Para [ Str "Not" ]
, RawBlock (Format "html") "
"
, Para [ Str "preformatted" ]
, Para [ Str "Don't need" ]
, Para [ Code ( "" , [] , [] ) "a\160blank\160line" ]
, Para [ Str "around a preformatted block." ]
, Header 2 ( "templates" , [] , [] ) [ Str "templates" ]
, RawBlock (Format "mediawiki") "{{Welcome}}"
, RawBlock (Format "mediawiki") "{{Foo:Bar}}"
, RawBlock
(Format "mediawiki") "{{Thankyou|all your effort|Me}}"
, Para
[ Str "Written "
, RawInline (Format "mediawiki") "{{{date}}}"
, Str " by "
, RawInline (Format "mediawiki") "{{{name}}}"
, Str "."
]
, Header 2 ( "tables" , [] , [] ) [ Str "tables" ]
, Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignDefault , ColWidthDefault )
, ( AlignDefault , ColWidthDefault )
]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Orange" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Apple" ] ]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Bread" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Pie" ] ]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Butter" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Ice cream" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Table
( "" , [] , [] )
(Caption Nothing [ Plain [ Str "Food complements" ] ])
[ ( AlignDefault , ColWidthDefault )
, ( AlignDefault , ColWidthDefault )
]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Orange" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Apple" ] ]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Bread" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Pie" ] ]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Butter" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Ice cream" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Table
( "" , [] , [] )
(Caption Nothing [ Plain [ Str "Food complements" ] ])
[ ( AlignDefault , ColWidthDefault )
, ( AlignDefault , ColWidthDefault )
]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Orange" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Apple" ] ]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Bread" ] , Para [ Str "and cheese" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Pie" ]
, OrderedList
( 1 , DefaultStyle , DefaultDelim )
[ [ Plain [ Str "apple" ] ]
, [ Plain [ Str "carrot" ] ]
]
]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignDefault , ColWidthDefault )
, ( AlignDefault , ColWidthDefault )
, ( AlignDefault , ColWidthDefault )
]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Orange" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Apple" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "more" ] ]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Bread" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Pie" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "more" ] ]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Butter" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Ice cream" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "and more" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignLeft , ColWidth 0.25 )
, ( AlignRight , ColWidth 0.125 )
, ( AlignCenter , ColWidth 0.125 )
]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Left" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Right" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Center" ] ]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "left" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "15.00" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "centered" ] ]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "more" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "2.0" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "more" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignDefault , ColWidthDefault )
, ( AlignDefault , ColWidthDefault )
]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Orange" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Apple" ] ]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Bread" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignDefault , ColWidthDefault )
, ( AlignDefault , ColWidthDefault )
]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "fruit" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "topping" ] ]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "apple" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "ice cream" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
]
]
, Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Butter" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Ice cream" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignDefault , ColWidthDefault ) ]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "Orange" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Para [ Str "Paragraph after the table." ]
, Table
( "" , [] , [] )
(Caption Nothing [])
[ ( AlignDefault , ColWidthDefault )
, ( AlignDefault , ColWidthDefault )
]
(TableHead
( "" , [] , [] )
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "fruit" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "topping" ] ]
]
])
[ TableBody
( "" , [] , [] )
(RowHeadColumns 0)
[]
[ Row
( "" , [] , [] )
[ Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "apple" ] ]
, Cell
( "" , [] , [] )
AlignDefault
(RowSpan 1)
(ColSpan 1)
[ Para [ Str "ice cream" ] ]
]
]
]
(TableFoot ( "" , [] , [] ) [])
, Header 2 ( "notes" , [] , [] ) [ Str "notes" ]
, Para [ Str "My note!" , Note [ Plain [ Str "This." ] ] ]
, Para
[ Str "URL note."
, Note
[ Plain
[ Link
( "" , [] , [] )
[ Str
"http://docs.python.org/library/functions.html#range"
]
( "http://docs.python.org/library/functions.html#range"
, ""
)
]
]
]
]