up vote 4 down vote favorite
1
share [g+] share [fb]

Do you use any tool for writing tutorial style, or cookbook style documentation? How do you keep it up to date (e.g. changes in output, changes in signatures, changes in command line parameters,.. )? Right now I do everything manually, and it's a pain.

I know the tools for producing reference docs, like Sandcastle and NDoc. That's not what I'm looking for.

To clarify, my dream tool would allow me to write an actual .cs or .fs file like:

//>tutorialtext The PrintCakeReady function allows you to check whether your cake is ready. For example:

//>startcodesnippet

var cake = new ChocolateCake();

cake.PrintCakeReady();

//>endcodesnippet

//>tutorialtext Which produces:

//>outputprevioussnippet

This .cs or .fs file should be compilable - I can include it in my project so that it remains up to date. On the other hand I should be able to produce documentation from it, i.e. to html, which would include the code fragments in some distinctive style, execute them (like in Snippet Compiler, or Linqpad) and include the results in the appropriate place.

The benefits would be huge: I'd detect many incompatibilities in the documentation, it could be refactored, and if I change the output of some function, the documentation would auto-update.

But maybe there's a far simpler approach that gets me 90% there. How do you do it?

EDIT I've found this paper which elaborates on this idea. However, the associated tools are old (2002) and not updated.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

For what it's worth, I did that for Java:
http://www.agical.com/bumblebee/bumblebee_doc.html

I have no plans to port it to F# (need to learn the language first ;-)), but if you would write a similar tool maybe you could get some inspiration (or the opposite).

Cheers!

link|improve this answer
Nice work! I'll mark this as the "closest answer". I'll definitely have a good look at it. If I do write something myself, it's likely to be much much simpler though... – Kurt Schelfthout Mar 6 '09 at 7:25
feedback

In F#, the following approach occurs to me (I have not thought through all the implications):

TutorialText @"Yadda yadda yadda
Blah blah blah"

let snippet = <@ 
    let cake = new Cake()
    cake.PrintWhenReady()
@>

DisplayCode snippet

TutorialText @"Blather"

DisplayOutputOfExecuting snippet

Where the idea is that code snippets are quotations of actual code, which you can print or execute, and the execution of the whole program has the effect of printing out the documentation (rather than an external tool walking the .fs file and pulling out comments to make the doc). Basically I am suggesting authoring an internal DSL in F# for authoring documentation, and leveraging the quotation mechanism to deal with the dual nature of snippets (as both text to print and code to execute). I have no idea how well this will actually work.

link|improve this answer
I've been playing around with this (since apparently there is no tool for .NET that comes even close to what I want). Biggest problem is getting the DisplayCode function to work - a naive ToString on the quotation displays an AST. So I'd need sort of reverse compilation, which is overkill here. – Kurt Schelfthout Mar 5 '09 at 7:52
feedback

Things I know of which are vaguely like what you seem to be looking for (but not for C#):

link|improve this answer
I can see how Python would have the advantage here. Good tips. – Kurt Schelfthout Mar 5 '09 at 9:17
feedback

Your Answer

 
or
required, but never shown

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