Converter proof

HTML in.
Agent-ready Markdown out.

Examples below run through the package converter during this site build. No hand-edited output.

Documentation

62% smaller payload

389 bytes → 149 bytes

HTML
<header><nav><a href="/">Home</a><a href="/docs">Docs</a></nav></header>
<main>
  <article>
    <h1>Authentication</h1>
    <p>Send your token with every API request.</p>
    <h2>Example</h2>
    <pre><code>Authorization: Bearer $TOKEN</code></pre>
    <blockquote>Never commit tokens to source control.</blockquote>
  </article>
</main>
<footer>Terms · Privacy · Copyright 2026</footer>
Markdown
# Authentication

Send your token with every API request.

## Example

```
Authorization: Bearer $TOKEN
```

> Never commit tokens to source control.

Product page

39% smaller payload

272 bytes → 167 bytes

HTML
<main>
  <h1>Edge Database</h1>
  <p>Low-latency reads from every region.</p>
  <h2>Features</h2>
  <ul>
    <li>Automatic replication</li>
    <li>Point-in-time recovery</li>
    <li>Usage-based pricing</li>
  </ul>
  <p><a href="/start">Create a database</a></p>
</main>
Markdown
# Edge Database

Low-latency reads from every region.

## Features

- Automatic replication
- Point-in-time recovery
- Usage-based pricing

[Create a database](/start)

Verify delivery

Static demo, explicit Markdown URL.

GitHub Pages is static hosting, so it cannot negotiate onAccept. This build exposes generated Markdown directly. Runtime adapters can negotiate at the original URL.