SafePrompt logo SafePrompt by harpcrate
  • Export
  • Clear
  • About
Clear document
Are you sure you want to clear all content?
About SafePrompt
SafePrompt logo

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.


harpcrate™ Principles
  • Your info stays with you — no cookies, no data collection
  • No signups required
  • No tracking of any kind
  • Free to use — no ads or subscriptions, ever
Keyboard Shortcuts
  • Ctrl+/ (Cmd+/ on Mac) — Toggle between Edit and Preview

For terms and more details, visit harpcrate.com.

Markdown Guide

Markdown lets you format plain text with simple symbols. Here's everything you need to know.

Headings

Start a line with # symbols. More # = smaller heading.

# Heading 1
## Heading 2
### Heading 3

Text Formatting

StyleSyntaxResult
Bold**bold**bold
Italic*italic*italic
Bold & Italic***both***both

Lists

Bullet list

- First item
- Second item
- Third item

Numbered list

1. First item
2. Second item
3. Third item

Links

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

Images

![Alt text](https://example.com/image.png)

Blockquotes

Start a line with > to create a quote.

> This is a blockquote.

This is a blockquote.

Code

Wrap inline code with backticks: `code`

For a code block, use triple backticks:

```
function hello() {
  return "world";
}
```

Horizontal Rule

Use three dashes on their own line:

---

Escaping Characters

Use a backslash \ before any special character to display it literally:

\* not italic \*
\# not a heading
Prompt copied to the clipboard.