Skip to content

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

License

Notifications You must be signed in to change notification settings

devvyyxyz/markdown-cheat-sheet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

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.

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published