Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 653 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 653 Bytes

🦋 ➡️ 🤖 bsky2md

Convert Bluesky threads to markdown

FeaturesAPIDev journal

Features

  • supported features: links, mentions
  • supported embeds: images, external links
  • markdown and HTML

API

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());

screenshot