
5 Sep
2012
5 Sep
'12
3:40 p.m.
Is it possible to use inlined monospaced font in Haddock that does *not* replace < and > to links and does *not* link to Haskell functions (like @ and ' and " and ` do)? Like: -- | This function gives you @<span a1="v1">str</span>@ something :: String The @ above of course makes everything unreadable (as it thinks span... is a link). The only thing I've found to work so far is: -- | This function gives you -- -- >@<span a1="v1">str</span>@ something :: String Which is not inline.