Markdown Syntax Cheatsheet

Quick reference for Markdown syntax: headings, formatting, lists, links, images, code blocks, tables, and other essentials.

SyntaxDescriptionExampleCategory
#, ##, ### ...Headings H1-H6# Heading 1 ## Heading 2 ### Heading 3Headings
**bold**Bold text**Bold Text**Formatting
*italic*Italic text*Italic Text*Formatting
~~strikethrough~~Strikethrough text~~Strikethrough~~Formatting
> blockquoteBlockquote> This is a quoteCode & Blockquotes
- item or * itemUnordered list- Item 1 - Item 2Lists
1. itemOrdered list1. First 2. SecondLists
- [ ] or - [x]Task list- [ ] Task 1 - [x] Task 2Lists
[text](url)Hyperlink[Google](https://google.com)Links & Images
![alt](url)Image![Logo](https://example.com/logo.png)Links & Images
`code`Inline code`inline code`Code & Blockquotes
```language code```Code block```js console.log("Hello") ```Code & Blockquotes
TablesCreate tables| Name | Age | | --- | --- | | Alice | 25 | | Bob | 30 |Tables
---Horizontal rule---Others
\Escape special characters\*Not italic\*Others