Difference between revisions of "Haddock/FAQ"

From HaskellWiki
Jump to navigation Jump to search
m (Formatting)
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
* My version of Haddock does not accept some infix operators like <hask>(#)</hask>.
+
=== My version of Haddock does not accept some infix operators like <hask>(#)</hask> ===
   
: In fact it does, but you have to add spaces between parentheses and the infix symbols sometimes: <hask>( # )</hask>.
+
In fact it does, but you have to add spaces between parentheses and the infix symbols sometimes: <hask>( # )</hask>.
   
* How do I get hyperlinks to definitions in e.g. Haskell98?
+
=== How do I get hyperlinks to definitions in e.g. Haskell98? ===
   
: You must have the relevant documentation installed e.g. ghc-doc. Then you can say e.g.:
+
You must have the relevant documentation installed e.g. ghc-doc. Then you can say e.g.:
: <pre> haddock</pre>
+
<pre>
: <pre>-odir=haddock --html</pre>
+
haddock
  +
-odir=haddock --html
: <pre>--read-interface=http://www.haskell.org/ghc/docs/latest/html/libraries/base,/usr/share/doc/packages/ghc-doc/libraries/base/base.haddock</pre>
 
: <pre>--read-interface=http://www.haskell.org/ghc/docs/latest/html/libraries/haskell98,/usr/share/doc/packages/ghc-doc/libraries/haskell98/haskell98.haddock</pre>
+
--read-interface=http://www.haskell.org/ghc/docs/latest/html/libraries/base,/usr/share/doc/packages/ghc-doc/libraries/base/base.haddock
 
--read-interface=http://www.haskell.org/ghc/docs/latest/html/libraries/haskell98,/usr/share/doc/packages/ghc-doc/libraries/haskell98/haskell98.haddock
: <pre>Data/LargeWord.hs</pre>
+
Data/LargeWord.hs
: or much easier just use cabal: <pre>./Setup haddock</pre>
 
  +
</pre>
  +
 
or much easier just use cabal:
  +
  +
<pre>./Setup haddock</pre>
  +
  +
[[Category:FAQ]]

Revision as of 00:50, 23 May 2013

My version of Haddock does not accept some infix operators like (#)

In fact it does, but you have to add spaces between parentheses and the infix symbols sometimes: ( # ).

How do I get hyperlinks to definitions in e.g. Haskell98?

You must have the relevant documentation installed e.g. ghc-doc. Then you can say e.g.:

haddock
    -odir=haddock --html
    --read-interface=http://www.haskell.org/ghc/docs/latest/html/libraries/base,/usr/share/doc/packages/ghc-doc/libraries/base/base.haddock
    --read-interface=http://www.haskell.org/ghc/docs/latest/html/libraries/haskell98,/usr/share/doc/packages/ghc-doc/libraries/haskell98/haskell98.haddock
    Data/LargeWord.hs

or much easier just use cabal:

./Setup haddock