A native macOS Markdown viewer & editor with live preview.
Bold, Italic, Strikethrough, and inline code.
Blockquotes are supported too. They can span multiple lines.
Visit GitHub or check the Markdown Guide.
- Unordered item 1
- Unordered item 2
- Nested item
- Ordered item 1
- Ordered item 2
- GFM Markdown rendering
- Syntax highlighting
- LaTeX math support
- Mermaid diagrams
- Quick Look extension
| Feature | Status | Notes |
|---|---|---|
| GFM | Done | Tables, task lists |
| KaTeX | Done | Inline & block math |
| Mermaid | Done | Flowcharts & more |
| highlight.js | Done | 180+ languages |
// Swift example
struct MarkdownPrism: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}# Python example
def fibonacci(n):
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
print(fibonacci(10)) # 55Inline math:
Block math:
graph LR
A[Markdown] --> B[markdown-it]
B --> C[HTML]
C --> D[highlight.js]
C --> E[KaTeX]
C --> F[Mermaid]
D --> G[Rendered Preview]
E --> G
F --> G
Tip: Open a .md file with Cmd+O or drag & drop it onto this window.