Markdown Guide
Complete Markdown syntax guide with live examples.
23 entries
Heading 1
HeadingsLargest heading. Use for page titles.
Markdown
# Heading 1Renders as
<h1>Heading 1</h1>Heading 2
HeadingsSection heading. Use for major sections.
Markdown
## Heading 2Renders as
<h2>Heading 2</h2>Heading 3
HeadingsSub-section heading.
Markdown
### Heading 3Renders as
<h3>Heading 3</h3>Bold
EmphasisBold text using double asterisks.
Markdown
**bold text**Renders as
<strong>bold text</strong>Italic
EmphasisItalic text using single asterisks.
Markdown
*italic text*Renders as
<em>italic text</em>Bold + Italic
EmphasisCombined bold and italic.
Markdown
***bold and italic***Renders as
<strong><em>bold and italic</em></strong>Strikethrough
EmphasisStrikethrough text using double tildes.
Markdown
~~strikethrough~~Renders as
<del>strikethrough</del>Ordered list
ListsNumbered list using integers followed by periods.
Markdown
1. First
2. Second
3. ThirdRenders as
<ol><li>First</li><li>Second</li></ol>Unordered list
ListsBullet list using -, *, or +. Indent 2 spaces for nesting.
Markdown
- Item one
- Item two
- Nested itemRenders as
<ul><li>Item one</li><li>Item two</li></ul>Task list
ListsCheckboxes in GitHub Flavored Markdown.
Markdown
- [x] Done task
- [ ] Pending taskRenders as
✅ Done task
☐ Pending taskInline link
LinksCreate a hyperlink with display text and URL.
Markdown
[link text](https://example.com)Renders as
<a href="...">link text</a>Reference link
LinksDefine links separately for cleaner source.
Markdown
[link text][ref]
[ref]: https://example.comRenders as
<a href="...">link text</a>Inline image
LinksEmbed an image with alt text.
Markdown
Renders as
<img src="image.png" alt="alt text">Inline code
CodeWrap code in backticks for inline display.
Markdown
`code here`Renders as
<code>code here</code>Code block
CodeFenced code block with optional language syntax highlighting.
Markdown
```javascript
const x = 1;
```Renders as
<pre><code>const x = 1;</code></pre>Blockquote
BlocksQuote text using > at the start of each line.
Markdown
> This is a quote
> that spans linesRenders as
<blockquote>This is a quote</blockquote>Horizontal rule
BlocksThree or more hyphens, asterisks, or underscores.
Markdown
---Renders as
<hr>Table
TablesCreate tables with pipes | and dashes ---.
Markdown
| Col 1 | Col 2 |
|-------|-------|
| A | B |Renders as
<table>...</table>Aligned table
TablesUse : in separator row to align columns.
Markdown
| Left | Center | Right |
|:-----|:------:|------:|
| L | C | R |Renders as
Left / center / right aligned columnsFootnote
ExtendedAdd footnotes (supported in many Markdown parsers).
Markdown
Text[^1]
[^1]: Footnote contentRenders as
Text¹ → Footnote contentDefinition list
ExtendedDefinition lists (Pandoc/extended Markdown).
Markdown
Term
: Definition textRenders as
<dl><dt>Term</dt><dd>Definition</dd></dl>Escape character
ExtendedUse backslash to escape special Markdown characters.
Markdown
\*not italic\*Renders as
*not italic*HTML inline
ExtendedRaw HTML is supported in most Markdown parsers.
Markdown
<mark>highlighted</mark>Renders as
<mark>highlighted</mark>All processing happens locally in your browser. No data is sent to any server.