reddit2md

Convert Reddit post URLs into formatted markdown documents.

2|3|Updated Mar 13, 2026
One-click install
npx skills add https://github.com/spideynolove/claude-dotfiles --skill reddit2md-spideynolove
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: reddit2md
Source: https://github.com/spideynolove/claude-dotfiles/tree/main/.claude-global-backup/skills/reddit2md
Command: npx skills add https://github.com/spideynolove/claude-dotfiles --skill reddit2md-spideynolove

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Reading, archiving, or analyzing Reddit threads is awkward in the browser, and copying comment trees manually loses structure. This Skill converts any Reddit post URL into clean markdown so you can read, summarize, or store discussions offline. ## Core Features & Use Cases - URL to Markdown Conversion: Turn a Reddit post and its comment thread into a structured markdown document with a single command. - Formatting Options: Choose list-style indentation, strip newlines from comments, add blank lines between top-level comments, or write output directly to a file. - Use Case: You find a long Reddit discussion you want to summarize or archive. Run the converter on the URL, save the markdown to a file, and feed it into your notes or an AI summarizer. ## Quick Start Convert this Reddit post URL to markdown and save it to a file so I can read and summarize the thread.

Frequently Asked Questions about reddit2md

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert a Reddit post to markdown?

Run reddit2md followed by the post URL, for example reddit2md <url>. The command prints the post and its comment thread as markdown to stdout, or to a file when you pass the --output option.

How to save a Reddit thread as a markdown file?

Use the --output flag with a target filename, such as reddit2md <url> --output thread.md. The converted post and comments are written to that file instead of being printed to the terminal.

Can I change the comment indentation style in the markdown output?

Yes, pass --style list to use list-style indentation instead of the default tree style with box-drawing characters. You can also add --space-comments to insert blank lines between top-level comments.

Why do Reddit comments contain unwanted newlines in markdown?

Comment text preserves the original line breaks from Reddit by default. Use the --escape-newlines option to strip newlines from comment text so each comment renders as a single block.

What are the limitations of converting Reddit threads to markdown?

The conversion depends on the reddit2md CLI being installed and on the Reddit post being publicly accessible. Deleted, private, or quarantined threads may not convert, and very large threads can produce lengthy output.