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:
- Fetch the URL HTML content
- Extracts the main article content using @mozilla/readability
- Converts the HTML to Markdown using turndown
- 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;
}