I’m using purs docs
to generate and see my documentation
- Is writing documentation on function parameters a-la haddock not supported at all? I’ve tried
foo :: a -- ^ a param
-> b
and I’ve tried
foo ::
-- | a param
a
-> b
and neither work
- It seems that the documntation entries are reordered based on the export list. Is it possible to disable that?
- How can I put my headings
##heading
between declarations? It seems they prefer to stick to the next declaration they find, which puts them below it in the resulting html file.