Actions

Mermaid: Difference between revisions

From Rabbi Blog

mNo edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Nested Diagrams=
How complex would nested diagrams be?  Would need to map everything out and have a naming convention for the nodes and levels.
<br>
* <nodeShortName>_<A-Z> becomes the page to be created
** the 27th level could be AA, then AB, etc.  We would hope that we never got that deep.
* Does the naming really work?  Might need to prefix with the Subject.
* <projectShortName>_<nodeShortName>_<A-Z> becomes the page to be created
** Needs to be unique!
=Original Link Test=
The chart below was started before the thoughts above.
<mermaid>
<mermaid>
graph TD
graph TD
     A[Start] --> B{Is it working?}
     A[Start] --> B{Is it working?}
     B -- Yes --> C[Great!]
     B -- Yes --> C[Great!]
     B -- No --> D[Check LocalSettings.php]
     B -- No --> D[Check Mermaid Lvl 2]


click D "/index.php?Minecraft" "Go to LocalSettings"
click D "/index.php/MermaidLvl2" "Go to Mermaid Level 2"
style D fill:#2ecc71,stroke:#27ae60,color:#fff
style D fill:#2ecc71,stroke:#27ae60,color:#fff
</mermaid>
</mermaid>

Latest revision as of 10:19, 18 August 2026

Nested Diagrams

How complex would nested diagrams be? Would need to map everything out and have a naming convention for the nodes and levels.

  • <nodeShortName>_<A-Z> becomes the page to be created
    • the 27th level could be AA, then AB, etc. We would hope that we never got that deep.
  • Does the naming really work? Might need to prefix with the Subject.
  • <projectShortName>_<nodeShortName>_<A-Z> becomes the page to be created
    • Needs to be unique!


Original Link Test

The chart below was started before the thoughts above.

graph TD A[Start] --> B{Is it working?} B -- Yes --> C[Great!] B -- No --> D[Check Mermaid Lvl 2] click D "/index.php/MermaidLvl2" "Go to Mermaid Level 2" style D fill:#2ecc71,stroke:#27ae60,color:#fff