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: a2+b2=c2a^2 + b^2 = c^2

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
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());