Markdown formatting in mdfy
mdfy renders standard GitHub-flavored Markdown plus a few extras worth knowing about.
Inline
Regular text, bold, italic, bold italic, strikethrough, and inline code.
Links work the usual way: mdfy.app. Footnotes too[1].
Lists
- Bullets nest:
- Second level
- Third level
- Second level
- And tasks toggle inline (click the checkbox in Live mode):
- [x] Done
- [ ] Open
Tables
| Doc | Bundle | Hub |
|---|---|---|
| One URL | Many docs in one URL | All docs in one URL |
/abc123 |
/b/abc123 |
/hub/<you> |
Code
typescriptconst res = await fetch("https://mdfy.app/api/docs", {
method: "POST",
body: JSON.stringify({ markdown: "# Hello" }),
});
const { id } = await res.json();
// → https://mdfy.app/<id>
Math
Inline KaTeX: .
Display block:
That covers what most docs need. Diagrams get their own page in this bundle.
Like this one. ↩︎