aufgeräumt

This commit is contained in:
Adam Skotarczak 2025-05-21 22:24:33 +02:00
parent edcc06c830
commit aa18a6434c
Signed by: realAscot
GPG Key ID: 4CB9B8D93A96A538
6 changed files with 0 additions and 1049 deletions

View File

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,29 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- Externes JS einbinden -->
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
</script>
</head>
<body>
<!-- ab hier, innerhalb der mermaid-class, einfach den mermaid Code einfügen -->
<div class="mermaid">
flowchart TD
Start([Start])
Init[summe = 0]
Schleife{Liste leer?}
Hole[Hole nächstes Element]
Addiere[summe += zahl]
Ende([return summe])
Start --> Init --> Schleife
Schleife -- Nein --> Hole --> Addiere --> Schleife
Schleife -- Ja --> Ende
</div>
</body>
</html>

View File

@ -1 +0,0 @@
pandoc index.md -o ./build/mermaid.html --standalone --toc --metadata pagetitle="Mermaid Pocket Guide" --template=mermaid.html

View File

@ -1,19 +0,0 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>$title$</title>
<script src="https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.min.js"></script>
<script>
mermaid.initialize({ startOnLoad: true });
</script>
</head>
<body>
$body$
</body>
</html>