Launching today

.MD This Page
Convert any page to clean Markdown instantly
49 followers
Convert any page to clean Markdown instantly
49 followers
.MD this page is a browser extension that extracts the main content of an article or webpage, removes clutter, and converts it into well-formatted Markdown. Whether you're saving articles, preparing content for large language models, or building knowledge bases, this extension helps you turn messy web pages into structured, readable text in seconds




RepoList
@adem_kouki — how does the extension handle JavaScript-rendered pages? Most page-to-markdown tools work cleanly on server-side rendered content but produce noisy output when the main body is client-side. Are you doing a readability-style extraction pass before converting, or working directly from the DOM?
RepoList
@jimmypk Good question. it works on the fully rendered DOM, then run a Readability extraction pass before converting to Markdown. So it handles most JS-rendered pages pretty well
What does it use under the covers to convert the html to markdown? Some pre-existing library or rolls its own? Is there LLM assistance at all?
RepoList
@gunnarniels The pipeline is basically: rendered DOM → Readability extraction → Turndown → Markdown
No LLM involved at all.. everything runs locally in the browser
@adem_kouki Love it