Markdown-Syntax-Anleitung
Vollständige Referenz für Markdown-Formatierung mit gerenderten Beispielen
Inhaltsverzeichnis
1. Überschriften
Überschriften erstellen Dokumentstruktur und Hierarchie. Verwenden Sie # Symbole (1-6) für verschiedene Überschriftenebenen.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
2. Textformatierung
Markdown bietet mehrere Möglichkeiten, Text hervorzuheben und zu formatieren.
**Bold text** or __also bold__
*Italic text* or _also italic_
***Bold and italic***
~~Strikethrough text~~
This is `inline code`
Normal paragraph text.
Bold text or also bold
Italic text or also italic
Bold and italic
Strikethrough text
This is inline code
Normal paragraph text.
3. Listen
Erstellen Sie organisierten Inhalt mit ungeordneten (Aufzählungs-) und geordneten (nummerierten) Listen.
Ungeordnete Listen
- First item
- Second item
- Nested item
- Another nested
- Third item
* Asterisks work too
+ Plus signs also work
- First item
- Second item
- Nested item
- Another nested
- Third item
- Asterisks work too
- Plus signs also work
Geordnete Listen
1. First step
2. Second step
3. Third step
1. Sub-step A
2. Sub-step B
4. Fourth step
- First step
- Second step
- Third step
- Sub-step A
- Sub-step B
- Fourth step
4. Links & Bilder
Fügen Sie Hyperlinks hinzu und betten Sie Bilder in Ihre Dokumente ein.
Links
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")
Autolink: <https://example.com>
Email: <[email protected]>
Bilder


[](full.jpg)
Images display with alt text for accessibility
5. Code
Zeigen Sie Code mit korrekter Formatierung durch Inline-Code oder umzäunte Codeblöcke an.
Inline-Code
Use `const` for constants.
Run `npm install` to begin.
Use const for constants.
Run npm install to begin.
Codeblöcke
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
```
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
6. Blockzitate
Verwenden Sie Blockzitate, um wichtigen Text, Zitate oder Notizen hervorzuheben.
> This is a blockquote.
> It can span multiple lines.
> Nested quotes work too:
>
> > This is a nested quote.
>
> Back to the outer quote.
This is a blockquote. It can span multiple lines.
Nested quotes work too:This is a nested quote.Back to the outer quote.
7. Tabellen
Erstellen Sie strukturierte Datentabellen mit Pipes (|) und Bindestrichen (-).
| Feature | Status |
|---------|--------|
| Templates | 16 available |
| Colors | 20 schemes |
| Fonts | 35+ families |
| Left | Center | Right |
|:-----|:------:|------:|
| L | C | R |
| Feature | Status |
|---|---|
| Templates | 16 available |
| Colors | 20 schemes |
| Fonts | 35+ families |
| Left | Center | Right |
|---|---|---|
| L | C | R |
8. Horizontale Linien
Erstellen Sie visuelle Trennungen zwischen Abschnitten mit drei oder mehr Bindestrichen, Sternchen oder Unterstrichen.
Section one content.
---
Section two content.
***
Section three content.
Section one content.
Section two content.
Section three content.
9. Aufgabenlisten
Erstellen Sie interaktive Checklisten zur Fortschrittsverfolgung oder für Aufgaben.
## Project Tasks
- [x] Design mockups
- [x] Write documentation
- [ ] Code review
- [ ] Deploy to production
Project Tasks
- Design mockups
- Write documentation
- Code review
- Deploy to production
10. Erweiterte Funktionen
Erweiterte Markdown-Syntax für komplexe Dokumente.
Fußnoten
Here is a sentence with a footnote[^1].
[^1]: This is the footnote content.
Here is a sentence with a footnote[1].
[1] This is the footnote content.
Definitionslisten
Term 1
: Definition of term 1
Term 2
: Definition of term 2
- Term 1
- Definition of term 1
- Term 2
- Definition of term 2
Zeichen Escapen
\*Not italic\* → *Not italic*
\# Not a heading → # Not a heading
\`Not code\` → `Not code`
Kurzreferenz
# Heading 1
Überschrift
**bold**
Fetter Text
*italic*
Kursiver Text
[text](url)
Link

Bild
`code`
Inline-Code
```lang
Codeblock
> quote
Blockzitat
- item
Aufzählungsliste
1. item
Nummerierte Liste
---
Horizontale Linie
- [x] done
Aufgabenlistenelement
Bereit zum Schreiben?
Verwenden Sie Velvet MD, um Ihr Markdown in schön gestaltete Dokumente zu verwandeln.
Velvet MD öffnen