마크다운 가이드
Postlark uses GitHub Flavored Markdown (GFM) via the marked library.
Supported Syntax
섹션 제목: “Supported Syntax”Headings
섹션 제목: “Headings”# H1## H2### H3Emphasis
섹션 제목: “Emphasis”**bold** *italic* ~~strikethrough~~Links & Images
섹션 제목: “Links & Images”[Link text](https://example.com)Code
섹션 제목: “Code”Inline: `code`
Fenced blocks with syntax highlighting:
```javascriptconst hello = 'world'```Code blocks include a copy button automatically.
Tables
섹션 제목: “Tables”| Feature | Status ||---------|--------|| GFM tables | Supported || Alignment | Supported |Blockquotes
섹션 제목: “Blockquotes”> This is a blockquoteLists
섹션 제목: “Lists”- Unordered item- Another item
1. Ordered item2. Another itemTask Lists
섹션 제목: “Task Lists”- [x] Completed- [ ] Not doneHorizontal Rule
섹션 제목: “Horizontal Rule”---Content Limits
섹션 제목: “Content Limits”- Maximum content size: 1 MB
- Maximum 10 tags per post, each up to 50 characters
- Slug: auto-generated from title, supports Unicode (Korean, etc.)
XSS Protection
섹션 제목: “XSS Protection”All rendered HTML is sanitized: <script>, <iframe>, <form>, <style> tags and on* event handlers are stripped automatically.