Skip to content

Latest commit

 

History

History
118 lines (82 loc) · 1.86 KB

README.md

File metadata and controls

118 lines (82 loc) · 1.86 KB

markdown-cheat-sheet

A Markdown cheat sheet providing a quick overview of all the Markdown syntax elements.

Basic elements

Element Syntax
Heading # H1 ## H2 ### H3
Link [text](https://example.com)
Image ![alt text](image.png)

Text elements

Element Syntax
Bold **bold text**
Italic *italic*
Strikethrough ~~strikethrough~~
Blockquote > blockquote
Ordered list 1. first
2. second
3. third
Unordered list - first
- second
- third
Task list - [x] first
- [ ] second
- [ ] third
Emoji Wow you are so funny :joy:

Extended elements

Element Syntax
Table | Syntax | Description |
| ----------- | ----------- |
| text | description |
Fenced code block `test `
Footnote Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
Heading ID ## Heading {#custom-id}
Subscript H~2~O
Superscript X^2^

Elements showcase

Heading

H1


Link

click me!


Image

alt text


Bold

bold text


Italic

italic text


Strikethrough

strikethrough text


Blockquote

blockquote text


Ordered list

  1. first
  2. second
  3. third

Unordered list

  • first
  • second
  • third

Task list

  • first
  • second
  • third

Emoji

Wow you are so funny 😂


Table

Syntax Description
text description

Fenced code block

code...

Footnote

Here's a sentence with a footnote. 1


Footnotes

  1. This is the footnote.