xhtml-3000.2.0.0: An XHTML combinator librarySource codeContentsIndex
Text.XHtml.Table
Description
Table combinators for XHTML.
Synopsis
data HtmlTable
class HTMLTABLE ht where
cell :: ht -> HtmlTable
(</>) :: (HTMLTABLE ht1, HTMLTABLE ht2) => ht1 -> ht2 -> HtmlTable
above :: (HTMLTABLE ht1, HTMLTABLE ht2) => ht1 -> ht2 -> HtmlTable
(<->) :: (HTMLTABLE ht1, HTMLTABLE ht2) => ht1 -> ht2 -> HtmlTable
beside :: (HTMLTABLE ht1, HTMLTABLE ht2) => ht1 -> ht2 -> HtmlTable
aboves :: HTMLTABLE ht => [ht] -> HtmlTable
besides :: HTMLTABLE ht => [ht] -> HtmlTable
simpleTable :: [HtmlAttr] -> [HtmlAttr] -> [[Html]] -> Html
Documentation
data HtmlTable Source

We internally represent the Cell inside a Table with an object of the type

	   Int -> Int -> Html

When we render it later, we find out how many columns or rows this cell will span over, and can include the correct colspan/rowspan command.

show/hide Instances
class HTMLTABLE ht whereSource
Methods
cell :: ht -> HtmlTableSource
show/hide Instances
(</>) :: (HTMLTABLE ht1, HTMLTABLE ht2) => ht1 -> ht2 -> HtmlTableSource
above :: (HTMLTABLE ht1, HTMLTABLE ht2) => ht1 -> ht2 -> HtmlTableSource
(<->) :: (HTMLTABLE ht1, HTMLTABLE ht2) => ht1 -> ht2 -> HtmlTableSource
beside :: (HTMLTABLE ht1, HTMLTABLE ht2) => ht1 -> ht2 -> HtmlTableSource
aboves :: HTMLTABLE ht => [ht] -> HtmlTableSource
besides :: HTMLTABLE ht => [ht] -> HtmlTableSource
simpleTable :: [HtmlAttr] -> [HtmlAttr] -> [[Html]] -> HtmlSource

If you can't be bothered with the above, then you can build simple tables with simpleTable. Just provide the attributes for the whole table, attributes for the cells (same for every cell), and a list of lists of cell contents, and this function will build the table for you. It does presume that all the lists are non-empty, and there is at least one list.

Different length lists means that the last cell gets padded. If you want more power, then use the system above, or build tables explicitly.

Produced by Haddock version 0.9