Tinypaste showcase
A compact paste with the parts that usually break in chat tools: diagrams, math, media, tables, links, tasks, and code.
flowchart LR
A[Draft Markdown] --> B{Need to share?}
B -->|Yes| C[Pipe to curl]
C --> D[Get short public URL]
B -->|No| E[Keep it local]
Inline math:
Random Giphy embed:

| Target | Why it works | Link |
|---|---|---|
| Repository | Source and self-hosting path | https://github.com/martinopiaggi/tinypaste |
| Personal site | Plain URL linkification | https://martino.im |
| Raw Markdown | Same paste as text | Add .md to any paste URL |
- Markdown renders
- Mermaid renders as SVG
- LaTeX renders
- Send to a teammate
const markdown = await Deno.readTextFile("note.md");
const response = await fetch("https://tnypst.xyz/api/pastes", {
method: "POST",
headers: { "content-type": "text/markdown" },
body: markdown,
});
console.log(await response.text());