Web page to Markdown
Fetch a web page and save the article as Markdown.
Example
https://example.com/blog/post
# The post title
The main article text, as clean Markdown…
What it keeps
- The main article — headings, paragraphs, links and lists
- Reader-style extraction that skips nav, ads and sidebars
Where it struggles
- The page must allow cross-origin fetching (CORS)
- Paywalled or JavaScript-only pages may return little or nothing
- Exact layout isn't preserved — you get the readable content
Frequently asked questions
Why did a page come back empty?
Sites that block cross-origin requests, or that render their content only with JavaScript, can't be read this way.
Does it keep images?
Image links found in the article body are kept.
Where does the fetch happen?
In your browser — you enter a URL and the page is retrieved and cleaned client-side.