-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(contribute): workflow is partial
- Loading branch information
1 parent
bca5a46
commit 555e2c4
Showing
2 changed files
with
43 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[mermaid] | ||
.... | ||
graph TD | ||
%% Define styles for visual clarity | ||
classDef input fill:#D1E8FF,stroke:#005CFF,stroke-width:2; | ||
classDef artifact fill:#FFF5D1,stroke:#FFA500,stroke-width:2; | ||
classDef output fill:#D1FFD1,stroke:#008000,stroke-width:2; | ||
%% Define Inputs | ||
subgraph Inputs | ||
CF[Configuration File] | ||
CL[Command Line Arguments] | ||
end | ||
class CL,CF input | ||
%% Define Artifacts | ||
subgraph Processes | ||
P[Configuration Options] | ||
CD[Compilation Database] | ||
C[Corpus] | ||
G[Generator] | ||
end | ||
class P artifact | ||
class CD,C,G artifact | ||
%% Define Outputs | ||
subgraph Outputs | ||
D[Documentation] | ||
end | ||
class D output | ||
%% Relationships | ||
CF -->|Define| P | ||
CL -->|Define| P | ||
P -->|Defines| CD | ||
CD -->|Extract Symbols| C | ||
C -->|Feeds| G | ||
G -->|Produces| D | ||
%% Highlight dependencies for clarity | ||
P -->|Influences| G | ||
.... |