%% Top-Bottom direction
flowchart TB
%% Classes with styling
classDef default color:#383838,fill:#FFF7F1,stroke-width:1px
classDef external color:#383838,fill:#E6EEF8,stroke-width:1px
classDef normal color:#081457,fill:#E3E6FC,stroke-width:1px
classDef local fill:#FFC700,stroke:#333,stroke-width:1px
classDef remote fill:#D2BDF2,stroke:#201434,stroke-width:1px
classDef notouch fill:#F99697,stroke:#A4050E,stroke-width:1px
%% Aliases, classes, and shapes applied to nodes
GH[("@main")]:::remote
MDOUT[("@md-outputs")]:::notouch
PAGES[("@gh-pages")]:::notouch
DEPLOY(["ci_deploy()"]):::external
CIBUILDMD(["ci_build_markdown()"]):::external
CIBUILDSITE(["ci_build_site()"]):::external
%% Box around subset of nodes
%% Aliases, classes, and shapes applied
subgraph virtual machine
REPO["[repo]"]:::local
BUILT["[repo]/site/built"]:::local
SITE["[repo]/site/docs"]:::local
VLESS("validate_lesson()"):::normal
BUILDMD(["build_markdown()"]):::normal
BUILDSITE(["build_site()"]):::normal
end
%% Arrows and connection types
GH ---> REPO
REPO -.- VLESS
DEPLOY ---> VLESS
DEPLOY ---> CIBUILDMD
DEPLOY ---> CIBUILDSITE
VLESS -.- BUILDMD
CIBUILDMD ---> MDOUT
MDOUT <-.-> BUILT
CIBUILDMD ---> BUILDMD
CIBUILDSITE ---> PAGES
PAGES <-.-> SITE
CIBUILDSITE ---> BUILDSITE
BUILT -.- BUILDSITE
VLESS -.- BUILDSITE
BUILDMD --> BUILT BUILDSITE --> SITE
%% Top-Bottom direction flowchart TB %% Classes with styling classDef default color:#383838,fill:#FFF7F1,stroke-width:1px classDef external color:#383838,fill:#E6EEF8,stroke-width:1px classDef normal color:#081457,fill:#E3E6FC,stroke-width:1px classDef local fill:#FFC700,stroke:#333,stroke-width:1px classDef remote fill:#D2BDF2,stroke:#201434,stroke-width:1px classDef notouch fill:#F99697,stroke:#A4050E,stroke-width:1px %% Aliases, classes, and shapes applied to nodes GH[("@main")]:::remote MDOUT[("@md-outputs")]:::notouch PAGES[("@gh-pages")]:::notouch DEPLOY(["ci_deploy()"]):::external CIBUILDMD(["ci_build_markdown()"]):::external CIBUILDSITE(["ci_build_site()"]):::external %% Box around subset of nodes %% Aliases, classes, and shapes applied subgraph virtual machine REPO["[repo]"]:::local BUILT["[repo]/site/built"]:::local SITE["[repo]/site/docs"]:::local VLESS("validate_lesson()"):::normal BUILDMD(["build_markdown()"]):::normal BUILDSITE(["build_site()"]):::normal end %% Arrows and connection types GH ---> REPO REPO -.- VLESS DEPLOY ---> VLESS DEPLOY ---> CIBUILDMD DEPLOY ---> CIBUILDSITE VLESS -.- BUILDMD CIBUILDMD ---> MDOUT MDOUT <-.-> BUILT CIBUILDMD ---> BUILDMD CIBUILDSITE ---> PAGES PAGES <-.-> SITE CIBUILDSITE ---> BUILDSITE BUILT -.- BUILDSITE VLESS -.- BUILDSITE BUILDMD --> BUILT BUILDSITE --> SITE