markdown
.
kuberscan.com
Mermaid | PDF | Share
☀
☾
Save
≡
Drafts auto-expire 48h after saving
Export PDF
Sync scroll
☀
☾
Save & share
Download .md
Install macOS
Export PDF
Choose how the PDF should look.
Default
Plain black & white, smallest file
Styled
Preview colors, fonts, syntax highlighting
Cancel
Shareable link:
Copy
×
Markdown
0 chars
# Welcome to markdown.kuberscan.com A quick tour of what you can do here. **Edit this text on the left**. The preview on the right updates as you type. Hit **Save & share** to get a temporary URL anyone can open for the next 48 hours. --- ## Markdown basics **Bold**, *italic*, ~~strikethrough~~, `inline code`, and [links](https://kuberscan.com). Lists work the way you'd expect: - Unordered item one - Unordered item two - Nested item - Back to the top level 1. Numbered item 2. Another one 3. And one more Task lists are supported too: - [x] Live preview - [x] Save & share with auto-expiry - [x] Export PDF (Default or Styled) - [x] Draggable splitter between panes - [ ] Add your own next idea Blockquote: > "Markdown is intended to be as easy-to-read and easy-to-write as is feasible." > *John Gruber* A simple table: | Action | How | |---|---| | Save | Click **Save & share** or press Cmd / Ctrl + S | | Resize panes | Drag the divider between Markdown and Preview | | Reset editor | Click **Reset** in the toolbar | | Toggle theme | Click the ☀ / ☾ icon | Fenced code blocks with syntax highlighting: ```python def greet(name: str) -> str: return f"hello, {name}" print(greet("world")) ``` ```javascript const sum = (a, b) => a + b; console.log(sum(2, 3)); // 5 ``` ```bash # Save the editor content as a paste curl -sX POST https://markdown.kuberscan.com/api/save \ -H 'Content-Type: application/json' \ -d '{"body_md": "# Hello from curl"}' ``` --- ## Mermaid diagrams Anything inside a fenced ` ```mermaid ` block renders as an inline SVG diagram. The full catalog of diagram types is at [mermaid.js.org](https://mermaid.js.org). Here are four to give you a feel for what's possible. ### Flowchart ```mermaid flowchart LR A[User writes Markdown] --> B{Save?} B -->|Yes| C[Share temporary URL] B -->|No| D[Download .md or Export PDF] C --> E[(Auto-expires in 48h)] ``` ### Sequence diagram ```mermaid sequenceDiagram autonumber actor User participant Browser participant API as Flask API participant DB as SQLite User->>Browser: Click "Save & share" Browser->>API: POST /api/save { body_md } API->>DB: INSERT paste (expires_at = now + 48h) DB-->>API: ok API-->>Browser: { id, url, expires_at } Browser-->>User: Show shareable link ``` ### Pie chart ```mermaid pie showData title What you can put on the page "Prose" : 50 "Code blocks" : 20 "Mermaid diagrams" : 20 "Tables and lists" : 10 ``` ### State diagram ```mermaid stateDiagram-v2 [*] --> Drafting Drafting --> Saved: Save & share Saved --> Viewing: Open shared URL Saved --> Expired: 48 hours pass Expired --> [*] ``` --- ## Try it Click **Reset** in the toolbar to clear this welcome content, or just start editing on the left to make it your own. When you're ready, hit **Save & share** to get a temporary URL that auto-expires in 48 hours.
Preview
live