FOERBICO/Markdownvorlage.md

47 lines
939 B
Markdown
Raw Normal View History

2024-09-20 06:59:36 +00:00
# Vorlage
Ich habe Angefangen ein Vorlagendokument zu erstellen um nicht immer nach gewissen Coodierungen googlen zu müssen. Bitte gerne ergänzen.
## Tabelle
<table>
<thead>
<tr>
<th>Spalte 1</th>
<th>Spalte 2</th>
<th>Spalte 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Inhalt</td>
<td>Inhalt</td>
<td>Inhalt</td>
</tr>
<tr>
<td>Inhalt</td>
<td>Inhalt</td>
<td>Inhalt</td>
</tr>
</tbody>
</table>
### Spaltenbündig
| Linksbündig | Zentriert | Rechtsbündig |
| :--- | :---: | ---: |
| Inhalt | Inhalt | Inhalt |
| Inhalt | Inhalt | Inhalt |
2024-09-20 07:51:34 +00:00
## Mermaid-Chart
Live-Editor: https://mermaid.live/edit
2024-09-20 08:59:48 +00:00
**Beispiel: Flowchart**
2024-09-20 07:51:34 +00:00
```mermaid
flowchart TD
2024-09-20 08:59:48 +00:00
A[Inhalt] -->|Inhalt| B(Inhalt)
B --> C{Inhalt}
C -->|Inhalt| D[Inhalt]
C -->|Inhalt| E[Inhalt]
C -->|Inhalt| F[fa:fa-Inhalt Inhalt]
```