Skip to content

Commit

Permalink
Fix Jekyll docs build error from curly braces interpretation (#2951)
Browse files Browse the repository at this point in the history
* Fix Jekyll docs build error from curly braces interpretation

* fix spelling
  • Loading branch information
thomas-bc authored Oct 15, 2024
1 parent 0ea1744 commit d43fe50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ endcond
endfunction
endloc
endmacro
endraw
enduml
ENQUEUEX
enumchan
Expand Down
2 changes: 2 additions & 0 deletions docs/HowTo/develop-subtopologies.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ topology MainDeployment {

At this point, we want to now call our subtopology's configure/start/teardown functions within the corresponding functions of our `MainDeployment` topology. So, in `MainDeploymentTopology.cpp`:

<!-- {% raw %} -->
```cpp
// at the top, include our topology.hpp
#include <MySubtopology/MySubtopologyTopology.hpp>
Expand Down Expand Up @@ -293,6 +294,7 @@ void teardownTopology(const TopologyState& state){
MySubtopology::teardownTopology({})
}
```
<!-- {% endraw %} -->

Lastly, since our RNG component has some telemetry, we need to include (or ignore) these channels within the `Packets.xml` file in this folder. As with any other component that is added to a deployment, you use the same syntax with the name of the instance followed by the name of the telemetry channel. For example:

Expand Down

0 comments on commit d43fe50

Please sign in to comment.