Weekly notes
A quick tour of GitHub Flavored Markdown, rendered exactly the way GitHub shows it. No surprises, no broken tables.
This week
- Tables with alignment
- Task lists and footnotes1
- Ship the release
| Feature | Status | Engine |
|---|---|---|
| Rendering | ✅ | instant |
| Highlighting | ✅ | Shiki |
| Math | ✅ | KaTeX |
export function render(doc: string): Rendered {
return pipeline.process(doc); // real syntax highlighting
}
Front matter is kept out of the rendered text, never dumped into the document body.
Footnotes
-
Footnotes render with backlinks, just like GitHub. ↩