aboutsummaryrefslogtreecommitdiff
path: root/src/Haddock/Backends/Xhtml
diff options
context:
space:
mode:
authorMark Lentczner <markl@glyphic.com>2010-07-18 04:41:38 +0000
committerMark Lentczner <markl@glyphic.com>2010-07-18 04:41:38 +0000
commitcd8536a66525fc96bc3f612913065ac9ee498873 (patch)
tree04ce036b6cc24f648f17cf7dffe1ef2c559395c9 /src/Haddock/Backends/Xhtml
parentd03e6a21c09b1d5257727895e33addfcc966e437 (diff)
fixed alphabet on index page, and styling of it and packages in module lists
Diffstat (limited to 'src/Haddock/Backends/Xhtml')
-rw-r--r--src/Haddock/Backends/Xhtml/Layout.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Haddock/Backends/Xhtml/Layout.hs b/src/Haddock/Backends/Xhtml/Layout.hs
index c079ea42..081baeb6 100644
--- a/src/Haddock/Backends/Xhtml/Layout.hs
+++ b/src/Haddock/Backends/Xhtml/Layout.hs
@@ -14,7 +14,7 @@ module Haddock.Backends.Xhtml.Layout (
miniBody,
divPackageHeader, divModuleHeader, divFooter,
- divIndex, divModuleList, divTableOfContents,
+ divIndex, divAlphabet, divModuleList, divTableOfContents,
divDescription, divSynposis, divInterface,
sectionName,
@@ -55,8 +55,9 @@ divPackageHeader = thediv ! [identifier "package-header"]
divModuleHeader = thediv ! [identifier "module-header"]
divFooter = thediv ! [identifier "footer"]
-divIndex, divModuleList, divTableOfContents :: Html -> Html
+divIndex, divAlphabet, divModuleList, divTableOfContents :: Html -> Html
divIndex = thediv ! [identifier "index"]
+divAlphabet = thediv ! [identifier "alphabet"]
divModuleList = thediv ! [identifier "module-list"]
divTableOfContents = thediv ! [identifier "table-of-contents"]