diff --git a/docs/markdown.md b/docs/markdown.md index 2aa1674..a44d57c 100644 --- a/docs/markdown.md +++ b/docs/markdown.md @@ -1 +1,70 @@ # Markdown schreiben +Markdown ist eine einfache Auszeichnungssprache zur Strukturierung von Texten. + +### 1. Überschriften +```md +# Großes Kapitel +## Unterkapitel +### Abschnitt +``` + +### 2. Textformatierung +```md +**fett** +*kursiv* +~~durchgestrichen~~ +``` + +### 3. Listen + +Unsortiert: +```md +- Punkt 1 +- Punkt 2 + - Unterpunkt +``` + +Sortiert: +```md +1. Erster Punkt +2. Zweiter Punkt +3. Dritter Punkt +``` + +### 4. Code + +Inline: +```md +`echo "Hallo"` +``` + +Block: +`````md +```sh +echo "Hallo" +``` +````` + +### 5. Links + +```md +[Text](https://example.com) +``` + +### 6. Bilder + +```md +![Beschreibung](bild.png) +``` + +### 7. Zitate + +```md +> Dies ist ein Zitat +``` + +### 8. Horizontale Linie + +```md +--- +```