We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e7a033 commit 466d334Copy full SHA for 466d334
Distribution/Server/Pages/Package.hs
@@ -313,13 +313,13 @@ moduleSection render mdocIndex docURL quickNav =
313
, renderModuleForest docURL s ]
314
else []) ++
315
(if not (null m)
316
- then [ h2 << "Modules"
317
- , renderModuleForest docURL m ]
318
- else []) ++
319
- [renderDocIndexLink]
+ then [ h2 << "Modules"] ++
+ [renderDocIndexLink] ++
+ [renderModuleForest docURL m ]
+ else [])
320
renderDocIndexLink
321
| isJust mdocIndex =
322
- let docIndexURL = docURL </> "doc-index.html"
+ let docIndexURL = docURL </> "doc-index-All.html"
323
in paragraph ! [thestyle "font-size: small"]
324
<< ("[" +++ anchor ! [href docIndexURL] << "Index" +++ "]" +++
325
(if quickNav
0 commit comments