Markdown Showcase
One page that exercises the full markdown feature set, so rendering fidelity is easy to evaluate at a glance — in the live overlay and in the static export.
Text styles
Bold, italic, bold italic, strikethrough, and inline code. A link back Home and a link to the web.
Blockquote
Format ⊥ transport — the same page renders from the local tree, a peer, or a CDN. A second line of the same quote, to show it wraps as one block.
Lists
- First item
- Second item
- Nested item a
- Nested item b
- Third item
- Step one
- Step two
- Step three
- Styled tables
- Fenced code blocks
- Footnotes (not yet)
Table
| Feature | Status | Notes |
|---|---|---|
| Tables | Done | header + zebra rows |
| Code blocks | Done | monospace, bordered |
| Blockquotes | Done | left accent bar |
| Images | Done | scale to width |
Code block
fn markdown_to_html(md: &str) -> String {
let opts = Options::ENABLE_TABLES
| Options::ENABLE_STRIKETHROUGH
| Options::ENABLE_TASKLISTS;
render(md, opts)
}
Image
Back to Home.