vote up 4 vote down star

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.

flag

4 Answers

vote up 1 vote down check

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|flag
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 at 7:25
vote up 1 vote down

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|flag
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 at 7:52
vote up 1 vote down

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

link|flag
I can see how Python would have the advantage here. Good tips. – Kurt Schelfthout Mar 5 at 9:17
vote up 1 vote down

Doxygen would be perhaps a good option if you'd like to write LaTeX or HTML, for instance. If you want to go a step further, you can use Noweb, it's actually quite beautiful, but downside is you can't really write doc into a C# file. I have, however, done so outside of VS and I'm quite happy with it... even without intellisense. Hope this helps.

link|flag
Nice tools, but consistency between e.g. actual output and output included in the turorial is paramount, and these tools don't do that. It's not about the intellisense, really (although that is a nice bonus) – Kurt Schelfthout Mar 5 at 9:15

Your Answer

Get an OpenID
or

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