Every Markdown syntax with copy-ready examples — headings, emphasis, lists, links, images, tables, code, and task lists. Learn it in minutes, then write and share your document for free.
Use 1–6 hash symbols for heading levels one through six.
Markdown
# Heading 1
## Heading 2
### Heading 3Result
Markdown
**bold text**
*italic text*
~~strikethrough~~Result
bold text
italic textstrikethrough
Dashes (or *) for bullets; numbers for ordered lists.
Markdown
- First item
- Second item
- Nested item
1. Step one
2. Step twoResult
Markdown
[MarkDShare](https://markdshare.com)Result
Like a link, but with a leading exclamation mark.
Markdown
Result
🖼️ Renders the image inline with its alt text.
Markdown
> Markdown is readable as
> plain text — that's the point.Result
Markdown is readable as plain text — that's the point.
Backticks for inline code; triple backticks for a fenced block (add a language for highlighting).
Markdown
Inline `code` looks like this.
```js
const hi = () => "hello";
```Result
Inline code looks like this.
const hi = () => "hello";Pipes separate columns; the dashes row defines the header. Colons set alignment.
Markdown
| Feature | Free | Pro |
| ------- | :--: | :-: |
| Size | 50KB | 10MB |
| Expiry | 7d | Never |Result
| Feature | Free | Pro |
|---|---|---|
| Size | 50KB | 10MB |
| Expiry | 7d | Never |
A GitHub Flavored Markdown extension — checkboxes from [ ] and [x].
Markdown
- [x] Write the doc
- [ ] Share the linkResult
Three or more dashes on their own line.
Markdown
Above
---
BelowResult
Above
Below
Markdown is a lightweight markup language that uses plain-text symbols (like # for headings and ** for bold) to format documents. It stays readable as plain text and renders to clean HTML.
Use pipes (|) to separate columns and a row of dashes (---) under the header. Colons in the divider row control alignment. See the tables example above.
GFM is a popular superset of Markdown that adds tables, task lists, strikethrough, and automatic links on top of standard Markdown. MarkDShare supports it out of the box.
Write your Markdown, preview it live, and share it with a link — free, no account needed.
Open the editor