Convert Bluesky threads to markdown
Features • API • Dev journal
- supported features: links, mentions
- supported embeds: images, external links
- markdown and HTML
You can grab MD programmatically like this (example using typescript)
const r = await fetch(
"https://bsky.app/profile/randomwalker.bsky.social/post/3lczsmzoqe22e"
.replace("bsky.app", "bsky2md.deno.dev"),
);
console.log("MD:", await r.text());