URL to Markdown

A little online tool that takes a URL and converts it to Markdown. I built it so I can quickly get article content as clean markdown text for use in LLM chats. You might find it useful too :)

It works by doing the following:

  1. Fetch the URL HTML content
  2. Extracts the main article content using @mozilla/readability
  3. Converts the HTML to Markdown using turndown
  4. Returns the Markdown content

Optionally, you can download the converted Markdown as a file or export the converted URL in JSON format.

The JSON format is as follows:


interface JSONResponse {
    url: string;
    title: string;
    date: string;
    content: string;
}