Skip to content

Use case

Convert documentation pages to Markdown for Claude

Feed API docs and technical references to Claude or ChatGPT as clean Markdown, with code blocks and tables intact.

Documentation is the single best case for this tool. Docs sites are server-rendered, well structured, and rarely protected — and they are exactly what you want an AI coding assistant to have read before it answers.

Code fences, language hints and tables all survive the conversion, which matters more here than anywhere else. A code block that arrives as a wall of unformatted text is worse than useless to a model.

Usually works

Documentation sites convert reliably. Some — those behind Cloudflare's Markdown for Agents — serve Markdown directly, which is faster still and labelled as such in the result.

Step by step

  1. Copy the URL of the specific documentation page you need.
  2. Paste it into the converter and press Convert.
  3. Check the token count against your model's context window.
  4. Copy the Markdown and paste it into Claude, prefaced with what you're trying to build.

Worth knowing

  • Convert one page at a time and paste only what's relevant. A model given the exact page reasons better than one given the entire manual.
  • Leave Links on for docs: the cross-references tell the model what else exists in the API.
  • Many documentation sites already publish a Markdown version at the same path with .md appended — worth trying before converting anything.

Questions

Can it crawl a whole documentation site?
Not currently. The converter handles one page per request. Crawling a full site into a single file is on the roadmap, not in the tool today.

Are tables preserved?
Yes — as GitHub-flavored Markdown tables, which is what parameter and response tables need to stay readable.