aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2011-01-22 00:00:35 +0000
committerDavid Waern <david.waern@gmail.com>2011-01-22 00:00:35 +0000
commit4bc5e999c3b2c2bbf34c183218be6004c6cee54f (patch)
treee4de39d52421a07b673f2b0405a4bccc6d2d8fd9
parent86a3be291b61897ac05fc2a5e378b24720d157aa (diff)
Put title outside doc div when HTML:fying title+prologue
Avoids indenting the title, and makes more sense since the title is not a doc string anyway.
-rw-r--r--src/Haddock/Backends/Xhtml.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Haddock/Backends/Xhtml.hs b/src/Haddock/Backends/Xhtml.hs
index 6ca9d376..3bc2dd6f 100644
--- a/src/Haddock/Backends/Xhtml.hs
+++ b/src/Haddock/Backends/Xhtml.hs
@@ -246,7 +246,7 @@ ppHtmlContents odir doctitle _maybe_package
ppPrologue :: String -> Maybe (Doc GHC.RdrName) -> Html
ppPrologue _ Nothing = noHtml
ppPrologue title (Just doc) =
- docElement divDescription << (h1 << title +++ rdrDocToHtml doc)
+ divDescription << (h1 << title +++ docElement thediv (rdrDocToHtml doc))
ppModuleTree :: [ModuleTree] -> Html