File: flowchart_utils.md

package info (click to toggle)
scap-security-guide 0.1.76-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 110,644 kB
  • sloc: xml: 241,883; sh: 73,777; python: 32,527; makefile: 27
file content (24 lines) | stat: -rw-r--r-- 1,030 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# content/utils

This flowchart represents the high-level interaction of components under the `utils`, `release_tools`, `ssg` and `Dockerfiles` folders.

Note that colors are used to highlight components which interact with other folders under the `content` repository.

> ***NOTE***: Since the colors have only visual effects when presented in individual flowcharts, they are very useful when analyzing multiple flowcharts together.

<div class="mermaid" style="width=100%;">
flowchart TD
    subgraph utils
    200[utils] --> |contains| 201(scripts)
    200[utils] --> |contains| 202(html templates)
    203[release_tools] --> |contains| 204(scripts)
    205[ssg] --> |is a| 206(python module)
    207[Dockerfiles]
    end
    style 201 fill: #A9A9A9,stroke:#333
    style 202 fill: #A9A9A9,stroke:#333
    style 204 fill: #A9A9A9,stroke:#333
    style 206 fill: #A9A9A9,stroke:#333
    style 207 fill: #CD5C5C,stroke:#333,stroke-width:4px
</div>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>