Markdown Editor with Tables & Mermaid
Create technical documentation, notes, and blog posts with live split-screen preview. Includes native support for GitHub Flavored Markdown (GFM) tables and real-time embedded Mermaid diagrams.
|||
|
Markdown Source
50 lines Β· 182 words
Document Preview
1 min read Β· 1667 chars
Words: 182Characters: 1667Lines: 50Reading time: 1 min
GFM Tables & Embedded
```mermaid blocks supported.Markdown Tables & Mermaid Integration Guide
Unlike basic Markdown tools that only support standard bold and list syntax, this editor brings full specification support for complex tables and declarative diagrams.
GFM Markdown Tables
Format tabular data with customizable text alignment using colons on the delimiter row:
| Endpoint | Method | Rate Limit | Description | | :--- | :---: | ---: | :--- | | /api/v1/users | GET | 100/min | Retrieve user profile | | /api/v1/auth | POST | 10/min | Authenticate credentials |
Embedded Mermaid Diagrams
Embed architecture graphs, flowcharts, or sequence diagrams directly inside code fences:
```mermaid
graph LR
User[Developer] --> Editor[Markdown Editor]
Editor --> Preview[Live SVG Render]
```Frequently Asked Questions
- Are my documents uploaded or stored in the cloud?
- No. Parsing, markdown compilation, and Mermaid rendering occur 100% in your browser memory. Local drafts are securely stored in your browser's LocalStorage only.
- Can I copy rendered HTML directly into WordPress or email?
- Yes. Click the βCopy HTMLβ button on the toolbar to get standard, semantic HTML ready to paste into any CMS, blog engine, or email template.
- Does the editor support task checklists?
- Yes. Use
- [x] Done taskand- [ ] Pending tasksyntax to render interactive checkboxes.