aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Backends/Xhtml
Commit message (Collapse)AuthorAgeFilesLines
...
* remove <++> connectorMark Lentczner2010-06-171-5/+2
|
* push single constructors (newtype) onto line with declMark Lentczner2010-06-171-15/+30
|
* factored out ppInstancesMark Lentczner2010-06-111-30/+16
|
* changed tt elements to code elementsMark Lentczner2010-06-111-2/+2
|
* merge in changes from the big-whitespace cleanupMark Lentczner2010-05-246-12/+47
|
* added assoicated types and methods back into class declsMark Lentczner2010-05-041-3/+22
|
* remove unused bodyBoxMark Lentczner2010-04-251-3/+0
|
* fix class member boxes in summaryMark Lentczner2010-04-251-6/+3
|
* fixed surround of instance and constructor tablesMark Lentczner2010-04-252-31/+23
|
* made record fields be an unordList, not a tableMark Lentczner2010-04-251-11/+8
|
* merge in markupExample changesMark Lentczner2010-04-121-2/+4
|
* removed declWithDoc and cleaned up data decls in summaryMark Lentczner2010-04-122-37/+17
|
* removed commented out code that can't be maintainedMark Lentczner2010-04-101-65/+0
|
* data decls are now a sequence of paragraphs, not a tableMark Lentczner2010-04-101-10/+3
|
* all decls now generate Html not HtmlTableMark Lentczner2010-04-043-124/+71
| | | | | | | | | | | - ppDecl return Html, and so now do all of the functions it calls - added some internal tables to some decls, which is wrong, and will have to be fixed - decl "Box" functions became "Elem" functions to make clear they aren't in a table anymore (see Layout.hs) - docBox went away, as only used in one place (and its days are numbered) - cleaned up logic in a number of places, removed dead code - added maybeDocToHtml which simplified a number of places in the code
* clean up Doc formatting codeMark Lentczner2010-04-032-46/+39
| | | | | - add CSS for lists - renderToString now uses showHtml since prettyHtml messes up <pre> sections
* add exports to Xhtml modulesMark Lentczner2010-03-216-0/+6
|
* Fix compilation with GHC 6.13Simon Marlow2010-06-021-2/+1
|
* Position of module header, this time in the HTML backendsDavid Waern2010-05-136-6/+0
|
* Add markup support for interactive examplessimon.hengel2010-04-021-1/+10
|
* apply changes to Html.hs to Xhtml/*.hsMark Lentczner2010-03-201-5/+15
| | | | | | incorporate changes that were made between the time Html.hs was copied and split into Xhtml.hs and Xhtml/*.hs includes patchs after "Wibble" (!) through "Fix build with GHC 6.12.1"
* First, experimental XHTML renderingMark Lentczner2010-03-206-0/+1401
switch to using the xhtml package copied Html.hs to Xhtml.hs and split into sub-modules under Haddock/Backends/Xhtml and detabify moved footer into div, got ready for iface change headers converted to semantic markup contents in semantic markup summary as semantic markup description in semantic markup, info block in header fixed factored out rendering so during debug it can be readable (see renderToString)