mrdocs::Config::generator
Generator(s) used to create the documentation
Synopsis
Declared in <mrdocs/Config.hpp>
StringList generator;
Description
The generator is responsible for creating the documentation from the extracted symbols.
The generator uses the extracted symbols and the templates to create the documentation.
The built‐in generators include adoc, html, xml, and noop (which extracts but writes no output, useful for checking extraction warnings); data‐driven generators can be added by dropping a template folder under <addon>/generator/<name>/; a script‐driven generator is declared by an extension with mrdocs.register_generator and produces the output itself.
This option accepts a single generator (generator: xml), a list (generator: [xml, adoc]), or a comma‐separated string (`generator: "xml,adoc"`); when more than one is given the documentation is produced once per generator.
Created with MrDocs