MarkdownMe

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

Syntax
# Heading 1
## Heading 2
### Heading 3
Rendered Preview

Heading 1

Heading 2

Heading 3

Paragraphs

Syntax
This is a paragraph.

This is another paragraph.
Rendered Preview

This is a paragraph.

This is another paragraph.

Line breaks

Syntax
Line one  
Line two (two spaces at end)
Rendered Preview

Line one
Line two (two spaces at end)

Bold

Syntax
**bold text**
Rendered Preview

bold text

Italic

Syntax
*italic text*
Rendered Preview

italic text

Bold + Italic

Syntax
***bold and italic***
Rendered Preview

bold and italic

Links & Images

Inline link

Syntax
[Link text](https://example.com)
Rendered Preview

Reference link

Syntax
[Link text][1]

[1]: https://example.com "Example"
Rendered Preview

Image

Syntax
![Alt text](https://via.placeholder.com/100x50)
Rendered Preview

Alt text

Linked image

Syntax
[![Alt](https://via.placeholder.com/100x50)](https://example.com)
Rendered Preview

Alt

Lists

Unordered list

Syntax
- Item one
- Item two
- Item three
Rendered Preview
  • Item one
  • Item two
  • Item three

Ordered list

Syntax
1. First
2. Second
3. Third
Rendered Preview
  1. First
  2. Second
  3. Third

Nested list

Syntax
- Parent
  - Child
    - Grandchild
Rendered Preview
  • Parent
    • Child
      • Grandchild

Task list

Syntax
- [x] Done task
- [ ] Pending task
- [ ] Another task
Rendered Preview
  • Done task
  • Pending task
  • Another task

Code

Inline code

Syntax
Use `inline code` in text.
Rendered Preview

Use inline code in text.

Fenced code block

Syntax
```
function hello() {
  return 'world';
}
```
Rendered Preview
function hello() {
  return 'world';
}

Syntax highlighting

Syntax
```javascript
const x = 42;
console.log("hello");
```
Rendered Preview
const x = 42;
console.log("hello");

Blockquotes

Single blockquote

Syntax
> This is a blockquote.
Rendered Preview

This is a blockquote.

Nested blockquote

Syntax
> Outer quote
>> Nested quote
Rendered Preview

Outer quote

Nested quote

Tables

Basic table

Syntax
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |
Rendered Preview
Header 1Header 2
Cell 1Cell 2
Cell 3Cell 4

Column alignment

Syntax
| Left | Center | Right |
| :--- | :----: | ----: |
| L    |   C    |     R |
Rendered Preview
LeftCenterRight
LCR

Horizontal Rule

Horizontal rule (also *** or ___)

Syntax
---
Rendered Preview

Strikethrough

Strikethrough

Syntax
~~deleted text~~
Rendered Preview

deleted text

Footnotes

Footnote

Syntax
Here is a footnote[^1].

[^1]: This is the footnote content.
Rendered Preview

Here is a footnote1.

Footnotes

  1. This is the footnote content.

Details / Summary

Collapsible section

Syntax
<details>
<summary>Click to expand</summary>

Hidden content here.

</details>
Rendered Preview
<details> <summary>Click to expand</summary>

Hidden content here.

</details>

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.