module Text.XHtmlCombinators
(
XHtmlMT, XHtmlT, XHtml
, Page
, Content, CData
, Attrs, Attr
, TopLevelContent
, HeadContent
, Flow, FlowContent
, Block, BlockContent
, Inline, InlineContent
, ObjectContent
, MapContent
, ListContent, DefinitionListContent
, FieldSetContent
, OptionContent
, Table1Content, Table2Content, Table3Content
, TableColContent
, html', html
, text, empty
, head', head_
, title', title
, base', base
, meta', meta
, link', link
, style', style
, script', script
, noscript', noscript
, body', body
, div', div_
, p', p
, h1', h1, h2', h2, h3', h3
, h4', h4, h5', h5, h6', h6
, ul', ul
, ol', ol
, li', li
, dl', dl
, dt', dt
, dd', dd
, address', address
, hr', hr
, pre', pre
, blockquote', blockquote
, ins', ins, del', del
, a', a
, span', span_
, bdo', bdo
, br', br
, em', em
, strong', strong
, dfn', dfn
, code', code
, samp', samp
, kbd', kbd
, var', var
, cite', cite
, abbr', abbr
, acronym', acronym
, q', q
, sub', sub
, tt', tt
, i', i
, b', b
, big', big
, small', small
, object', object, param', param
, img', img
, map', map_
, area', area
, form', form
, label', label
, input', input
, select', select
, optgroup', optgroup
, option', option
, textarea', textarea
, fieldset', fieldset
, legend', legend
, button', button
, table', table
, caption', caption
, thead', thead
, tfoot', tfoot
, tbody', tbody
, colgroup', colgroup
, col', col
, tr', tr
, th', th
, td', td
, render, renderT
) where
import Text.XHtmlCombinators.Combinators
import Text.XHtmlCombinators.Internal
import Text.XHtmlCombinators.Render