Can anyone point me to any existing tools that convert .hs source files to html such that the rendered page displays the type of the variable/expression under the mouse?

In particular, I am looking for something like caml2html which uses the .annot file to generate the mouseover information.

I am familiar with Programmatica but I'm unable to tell whether (or how) it can show types...

Thanks!

Ranjit.

link|improve this question

50% accept rate
feedback

3 Answers

I'm not aware of a tool that does hover-over types, however, there is already a good ecosystem.

Haddock

The primary tool for converting Haskell source to nice HTML is haddock.

You can see its output format here. Note that types are not listed as hover-over, but instead encorporated into the document.

HsColour

If you specifically aren't looking for a tool that simply pretty-prints the source, hscolour, which is the tool that Haddock calls to generate nice pages like this, howeveri it doesn't do hover-over type inference.

link|improve this answer
Thanks @Don! I will try to tweak HsColor so that it displays annotations on hover-over. – Ranjit Jhala Apr 28 '11 at 18:06
feedback

From a quick look at the GHC API, it looks like it is possible to extract type a type annotated AST, so it should not be too monumental a task to do something like this.

link|improve this answer
feedback

That feature is pretty neat; I'm not aware of anything similar in Haskell, but it sure would be nice!

Along with what Don has mentioned, be sure you're aware of Literate Haskell and tools to convert it. One combo I've heard of is Pandoc + Hakyll; I'm sure there are other options but I haven't really used Literate Haskell much myself beyond toying with it.

So the best I can suggest for your specific question is to make a feature request to Pandoc.

I've put the idea on /r/haskell_proposals

See also:

link|improve this answer
2  
I've made some progress, see this or this for example... – Ranjit Jhala May 15 '11 at 0:20
feedback

Your Answer

 
or
required, but never shown

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