qDoc - Kdb+ HTML Documentation Generator
qDoc is a tool for generating API documentation in HTML format from doc comments in q source code.
The qDoc format is heavily based on the
JavaDoc format.
qDoc is ran from the tools menu, when called it will generate documentation for all open files.

How to write doc comments for qDoc
Example
1
2
3
4
5
6
/ ######################### logging to disk/table/console
/ a logger based on java's, including handlers,filters,formatters. But note there is only one gloal logger.
/ handlers - are notified when a logging event occurs
/ formatters - convert a logrecord into a string
/ filters - restrict what messages are actually logged
/ .