Automated API documentation generation for Matlab packages.
Dogma stands for documentation generation for Matlab packages and is a small Matlab package that is supposed to parse another Matlab package (called target). It creates a graph and allows to export the collected information of the target (contained in the graph representation) in an API documentation format to LaTeX or HTML.
Clone this repository, add it to your Matlab path and run dogma on a Matlab package of your choice:
import dogma.*;
mypkg = dogma('+yourPackage');
mypkg.buildTree();
mypkg.export('xml','mypkg.xml');
For details on the syntax and some basic settings have a look at the test script.
Dogma is in development status - while basic functionality is implemented, some features are missing. Comments, use cases and contributions are very welcome!
- Uses dogma to automatically generate its API documentation in HTML, which is published online.