Markdown Cheat Sheet
Complete Markdown syntax reference with live rendered examples side by side. Covers standard Markdown, GitHub Flavored Markdown, and common extensions.
Basic Syntax
Headings
# Heading 1 ## Heading 2 ### Heading 3
Heading 1
Heading 2
Heading 3
Paragraphs
This is a paragraph. This is another paragraph.
This is a paragraph.
This is another paragraph.
Line breaks
Line one Line two (two spaces at end)
Line one
Line two (two spaces at end)
Bold
**bold text**
bold text
Italic
*italic text*
italic text
Bold + Italic
***bold and italic***
bold and italic
Links & Images
Inline link
[Link text](https://example.com)
Reference link
[Link text][1] [1]: https://example.com "Example"
Image

Lists
Unordered list
- Item one - Item two - Item three
- Item one
- Item two
- Item three
Ordered list
1. First 2. Second 3. Third
- First
- Second
- Third
Nested list
- Parent
- Child
- Grandchild- Parent
- Child
- Grandchild
- Child
Task list
- [x] Done task - [ ] Pending task - [ ] Another task
- Done task
- Pending task
- Another task
Code
Inline code
Use `inline code` in text.
Use inline code in text.
Fenced code block
```
function hello() {
return 'world';
}
```function hello() {
return 'world';
}
Syntax highlighting
```javascript
const x = 42;
console.log("hello");
```const x = 42;
console.log("hello");
Blockquotes
Single blockquote
> This is a blockquote.
This is a blockquote.
Nested blockquote
> Outer quote >> Nested quote
Outer quote
Nested quote
Tables
Basic table
| Header 1 | Header 2 | | -------- | -------- | | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |
| Header 1 | Header 2 |
|---|---|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Column alignment
| Left | Center | Right | | :--- | :----: | ----: | | L | C | R |
| Left | Center | Right |
|---|---|---|
| L | C | R |
Horizontal Rule
Horizontal rule (also *** or ___)
---
Strikethrough
Strikethrough
~~deleted text~~
deleted text
Footnotes
Details / Summary
Collapsible section
<details> <summary>Click to expand</summary> Hidden content here. </details>
Hidden content here.
</details>Frequently Asked Questions
- What Markdown syntax is covered?
- Headings, emphasis, links, images, code, lists, tables, blockquotes, horizontal rules, task lists, footnotes, and more.
- Does it show GFM extensions?
- Yes, it covers GitHub Flavored Markdown including tables, task lists, strikethrough, and footnotes.
Related Tools
Regex Find & Replace
Find and replace text in Markdown using regex. Free online regex find and replace with live preview.
YAML Frontmatter Editor
Visual editor for YAML/TOML frontmatter. Free online frontmatter builder for Jekyll, Hugo, and Astro.
Transcript Cleaner
Clean up auto-generated transcripts, SRT subtitles, and raw captions. Remove timestamps, filler words, and speaker labels. Free online transcript cleaner.
Text Case Converter
Convert text between UPPERCASE, lowercase, Title Case, camelCase, snake_case, kebab-case, and more. Free online case converter.
About Markdown Cheat Sheet
Interactive Markdown cheat sheet with live examples. Free Markdown syntax reference guide. This tool runs entirely in your browser — no data is sent to any server. Your content stays private and secure. MarkdownMe provides free, fast, and reliable Markdown tools for developers, writers, and anyone who works with Markdown.