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

  1. Step one
  2. Step two
  3. Step three

Table

FeatureStatusNotes
TablesDoneheader + zebra rows
Code blocksDonemonospace, bordered
BlockquotesDoneleft accent bar
ImagesDonescale 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

Entity Demo Figure — a content-addressed SVG asset


Back to Home.