Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to write special characters like new line, and format output of haddock

I would like to format my haddock documentation as I do with javadoc, something like inserting html or any other markup that let me get a cleaner output without uncluding any javascript or CSS... Specially, I would like to know how to insert a line break in the documentation.

thanks!

like image 518
Throoze Avatar asked Dec 07 '11 21:12

Throoze


1 Answers

Haddock is designed to work with multiple output formats, including LaTeX, so it uses its own markup format instead of something like HTML.

I don't think you can insert just a line break, but you can start a new paragraph by leaving a blank line, e.g.

-- | First paragraph.
--
-- Second paragraph.
like image 192
hammar Avatar answered Nov 12 '22 23:11

hammar