A simple Markdown editor for composing, previewing, and exporting AI prompts. Everything is stored locally in your browser — by design, we have no way to collect your data.
For terms and more details, visit harpcrate.com.
Markdown lets you format plain text with simple symbols. Here's everything you need to know.
Start a line with # symbols. More # = smaller heading.
# Heading 1
## Heading 2
### Heading 3
| Style | Syntax | Result |
|---|---|---|
| Bold | **bold** | bold |
| Italic | *italic* | italic |
| Bold & Italic | ***both*** | both |
Bullet list
- First item
- Second item
- Third item
Numbered list
1. First item
2. Second item
3. Third item
[Link text](https://example.com)

Start a line with > to create a quote.
> This is a blockquote.
This is a blockquote.
Wrap inline code with backticks: `code`
For a code block, use triple backticks:
```
function hello() {
return "world";
}
```
Use three dashes on their own line:
---
Use a backslash \ before any special character to display it literally:
\* not italic \*
\# not a heading