Skip to content

Markdown Guide

Postlark uses GitHub Flavored Markdown (GFM) via the marked library.

# H1
## H2
### H3
**bold** *italic* ~~strikethrough~~
[Link text](https://example.com)
![Alt text](https://example.com/image.png)

Inline: `code`

Fenced blocks with syntax highlighting:

```javascript
const hello = 'world'
```

Code blocks include a copy button automatically.

| Feature | Status |
|---------|--------|
| GFM tables | Supported |
| Alignment | Supported |
> This is a blockquote
- Unordered item
- Another item
1. Ordered item
2. Another item
- [x] Completed
- [ ] Not done
---
  • Maximum content size: 1 MB
  • Maximum 10 tags per post, each up to 50 characters
  • Slug: auto-generated from title, supports Unicode (Korean, etc.)

All rendered HTML is sanitized: <script>, <iframe>, <form>, <style> tags and on* event handlers are stripped automatically.