Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to get bold faced text when documenting Haskell source code with haddock markup? There is / / for emphasis, but nothing obvious for strong. I'm hoping for an elegant hack but I'll settle for a kludgy workaround...

AfC

share|improve this question

1 Answer

Add '@' to your text and it will be bold:

Bold only one word, bold to the first delimiter like space and etc...

@text1 text2

here bold only text1 word.

Or wrap in bold some text:

@bold text examples in haddock@

share|improve this answer
Hm. Don't think so, unless your version of haddock parses a newer version of the syntax. A single @ results in an error (ie, no documentation generated for that function), and @some_name@ results in <code>...</code> (ie, monospaced), which is what I'd expect from haskell.org/haddock/doc/html/ch03s08.html §3.8.7 – Andrew Cowie Jan 1 at 6:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.