Markdown Cheat Sheet & Blog Guide
🚀 Blog Management Guide
Hier erfährst du, wie du diesen Blog pflegst und neue Inhalte veröffentlichst.
1. Einen neuen Post erstellen
Jeder Post ist ein “Page Bundle” (ein eigener Ordner). Das ist ideal für Bilder.
Schritte:
- Öffne dein Terminal im Verzeichnis:
D:\workspace\workspace.gravity\GitHubHugo\blog. - Nutze den Hugo-Befehl (oder erstelle den Ordner manuell):
- Die neue Datei findest du unter
content/posts/mein-neuer-post/index.md.
2. Bilder und Dateien einbinden
Da jeder Post ein eigener Ordner ist, kannst du Bilder einfach in denselben Ordner wie die index.md legen.
Beispiel:
- Datei:
content/posts/mein-neuer-post/foto.jpg - Einbinden im Markdown:

3. Lokal testen (Vorschau)
Bevor du veröffentlichst, kannst du dir die Seite lokal ansehen:
Die Seite ist dann unter http://localhost:1313 erreichbar.
4. Veröffentlichen (Live-Schalten)
Dank GitHub Actions musst du nur deine Änderungen pushen. Der Rest passiert automatisch.
Befehle:
Nach ca. 1-2 Minuten ist die Änderung auf deiner Website sichtbar.
Markdown Cheat Sheet
This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax.
Headings
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Emphasis
Emphasis, aka italics, with asterisks or underscores. Strong emphasis, aka bold, with asterisks or underscores. Combined emphasis with asterisks and underscores. Strikethrough with two tildes. Bold and nested italic. All bold and italic. Bold and italic nested.
Lists
Ordered:
- First ordered list item
- Another item
- Actual numbers don’t matter, just that it’s a number
- 1st.
- 2nd.
- 3rd.
Unordered:
- This is a list item
- This is a nested list item
- This is a nested list item
- This is another list item
- This is a nested list item
- This is another list item
Task:
- Write the press release
- Update the website
- Contact the media
Links
This link has a title attribute.
Tables
| Syntax | Description |
|---|---|
| Header | Title |
| Paragraph | Text |
Blockquotes
Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
You can reference a footnote like this.
All generalizations are false, including this one. (Mark Twain) 1
Code
Inline code has back-ticks around it.
You can remove line numbers, change the highlighting theme, and more. See Syntax Highlighting and Highlight.
Math
You can use LaTeX-style math with $ and $$ delimiters. For example, $x^2$ renders as $x^2$, and $$\frac{x}{y}$$ renders as: $$\frac{x}{y}$$
We can throw this scary-looking equation at you:
$$ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} = 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} {1+\frac{e^{-8\pi}} {1+\ldots} } } } $$
Horizontal Rules
Three or more… Hyphens ---, Asterisks ***, or Underscores ___.
Miscellaneous
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:scroll-auto to only The world is flat.
apply the scroll-auto utility on hover.
- term
- definition
- another definition