updated:  2022 03. November
published:  2022 03. May

Diagramme

Diagramme und Graphen in Markdown.

Einfach Ascii Diagramme mit goat

Mit dem Syntaxhighlight goat lassen sich durch einfache Ascii-Textzeichen simple Diagramme erstellen.

Beispiel Verzeichnisstruktur

 ```goat
 Linux
  ├──Android
  └──Debian
     └──Ubuntu
        ├──Lubuntu
        └──Kubuntu     
 ```

L i n u x A D n e d b r i o a U i n b d u n t L K u u u b b u u n n t t u u

Weitere Beispiele sind hier

Mermaid

Mit Mermaid erhält man viel bessere und umfangreichere Diagramme und Graphen.

graph LR; A[Hard edge] -->|Link text| B(Round edge) B --> C{Decision} C -->|One| D[Result one] C -->|Two| E[Result two]
%%{init: { 'theme': 'forest', 'loglevel': 'fatal', 'gitGraph': { 'rotateCommitLabel': true, 'showBranches': true, 'showCommitLabel': true, 'mainBranchName': 'mab', 'mainBranchOrder': 2 } } }%% gitGraph commit branch dev commit commit checkout mab commit commit merge dev commit commit
Stichworte (tags)