Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ build/
/mull.yml
/requirements.txt
/docs/puppeteer_config.json
/docs/mermaid.conf
6 changes: 3 additions & 3 deletions docs/flows.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ to the flow.
If we only use the `morning` component in our project, the `MorningRoutine` flow
graph would look like the following:

mermaid::morning_flow1.mmd[format="svg"]
mermaid::morning_flow1.mmd[format="svg" config="mermaid.conf"]

The power of `flow` services comes when more than one component adds actions to
the flow. Flows can be extended by inserting additional actions with new
Expand Down Expand Up @@ -102,7 +102,7 @@ struct childcare {

The new steps are inserted into the existing `flow`​'s dependency graph:

mermaid::morning_flow2.mmd[format="svg"]
mermaid::morning_flow2.mmd[format="svg" config="mermaid.conf"]

Multiple independent components can add actions to the same `flow`. This is the
power of `flow` services, they can be extended by multiple independent
Expand All @@ -128,7 +128,7 @@ all without the `MorningRoutine` source code having known about the new
functionality. We can mix and match new components without modifying the
original source code.

mermaid::morning_flow3.mmd[format="svg"]
mermaid::morning_flow3.mmd[format="svg" config="mermaid.conf"]

The `cib` library will take care of initializing and building all services,
including `flow` services. For `flow`​s, this means the dependency graph will be
Expand Down
2 changes: 1 addition & 1 deletion docs/intro.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ _cib_ contains several parts that work together:
Various sub-libraries within CIB form a dependency graph. `cib` is an omnibus
library that contains all the functionality.

mermaid::library_deps.mmd[format="svg"]
mermaid::library_deps.mmd[format="svg" config="mermaid.conf"]

=== Getting Started

Expand Down
2 changes: 1 addition & 1 deletion docs/logging.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ begin with. It is specialized as follows:
- Link-time optimization inlines the `catalog` function template
specializations, each of which is a one-line function that returns an ID.

mermaid::log_build_process.mmd[format="svg"]
mermaid::log_build_process.mmd[format="svg" config="mermaid.conf"]

NOTE: No logging exists in `main.cpp`: it's just a stub providing `main` that
calls into the application's library code.
Expand Down
Loading