|
1 | 1 | = Basic Usage
|
2 | 2 |
|
| 3 | +The diagram below illustrates the workflow of the MrDocs documentation tool. |
| 4 | +It shows how inputs are transformed step by step into the final documentation output. |
| 5 | +Each component in the diagram represents a distinct type of entity: |
| 6 | + |
| 7 | +- **Inputs**: Provide the initial parameters and settings required to configure and run the tool. |
| 8 | +These include the <<config-file,configuration file>> and <<cli,command-line arguments>>. |
| 9 | +- **Processes**: Represent intermediary outputs or data generated during the workflow. |
| 10 | +- **Outputs**: The final product, in this case, the generated documentation. |
| 11 | +
|
| 12 | +include::partial$workflow.adoc[] |
| 13 | + |
| 14 | +In summary: |
| 15 | + |
| 16 | +* Begin by specifying the <<config-file,configuration file>> and <<cli,command-line arguments>> to set up the options. The configuration options affect all processes. |
| 17 | +* The configuration options define a <<compilation-database, Compilation Database>>. All symbols are extracted with Clang to generate a unified corpus of symbols with their corresponding xref:page$commands.adoc[documentation]. |
| 18 | +* Finally, This corpus is then fed to a xref:page$generators.adoc[Generator] that produces the desired documentation. |
| 19 | +
|
| 20 | +For more details on each component, refer to the corresponding sections of this guide. |
| 21 | + |
| 22 | +[#config-file] |
3 | 23 | == MrDocs configuration file
|
4 | 24 |
|
5 | 25 | The `mrdocs.yml` configuration file contains information about the project.
|
@@ -30,6 +50,7 @@ The most important information is the `source-root` option, which determines the
|
30 | 50 |
|
31 | 51 | The list of all available options can be found in the xref:config-file.adoc[] page.
|
32 | 52 |
|
| 53 | +[#cli] |
33 | 54 | == MrDocs invocation
|
34 | 55 |
|
35 | 56 | NOTE: For consistency, these instructions assume you have the `mrdocs` executable in PATH.
|
@@ -59,6 +80,7 @@ mrdocs path/to/mrdocs.yml --output=../docs/reference
|
59 | 80 |
|
60 | 81 | NOTE: Except for the path to the `mrdocs.yml` file, all other relative paths are made absolute relative to the `mrdocs.yml` file.
|
61 | 82 |
|
| 83 | +[#compilation-database] |
62 | 84 | === Compilation databases
|
63 | 85 |
|
64 | 86 | One way to simplify the documentation generation process is by using a `compile_commands.json` file generated by CMake to determine the source files to process and their compile options.
|
|
0 commit comments