06.10.2022

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.

Basic Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

# H1 Heading
## H2 Heading
### H3 Heading
**bold text**
*italicized text*
> blockquote
`code`
1. ordered item 
- unordered item
[Link text](https://www.example.com)
[Link text][number]
[number]: <https://www.example.com> "link title"
![alt image text](https://www.example.com/images/tux.png)
--- (Horizontal Rule)

Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

~~Strikethru text~~
==highlighted text==.
(Subscript) H~2~O
(Superscript) X^2^
(Emoji) :joy:

definition term
: definition text

| Table | Header  |
| ----- | ------- |
| row   | content |
| row   | content |

	```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
	```
- [x] task list checked
- [ ] task list unchecked

Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.

Extension working in Eleventy

Strikethru text

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
TableHeader
rowcontent
rowcontent

Extension failing in Eleventy

==highlighted text==
(Subscript) H~2~O
(Superscript) X^2^
(Emoji) :joy:

definition term
: definition text

  • [x] task list checked
  • [ ] task list unchecked

Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.

Über … ×

doc.stumpp.name
Version 0.2.14

Michael Stumpp
michael@stumpp.name

Diese Webseite ist ein rein privates Angebot. Von dieser Seite werden keine Cookies oder andere Tracking-Methoden eingesetzt. Die Seite nutzt, soweit möglich, lokale Kopien der eingesetzen Bibliotheken und Ressourcen.

Lizenz: ISC ×
/*
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */
Release Notes ×
  doc.stumpp.name
  Version 0.2.14
  Release Notes


  v0.1
    + Erstausgabe