Throoze
Throoze

Reputation: 4038

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!

Upvotes: 7

Views: 932

Answers (1)

hammar
hammar

Reputation: 139890

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.

Upvotes: 4

Related Questions