Free Reddit Tool

Reddit Formatter & Markdown Preview

Reddit formats text with markdown. To format text on Reddit, wrap it in **bold**, *italic*, or ~~strikethrough~~, start lines with # for headers, - for lists, and > for quotes. Type below to see a live preview, then copy the raw markdown into Reddit.

Markdown input
Reddit preview

How to format on Reddit

Use bold, italic, and strikethrough to add emphasis.

Add a link like Linkeddit or a spoiler for hidden text.

Blockquotes are great for replying to another comment.
  • First bullet point
  • Second bullet point
    • A nested point
  1. Numbered step one
  2. Numbered step two

Inline code looks like this, and a fenced block:

function hello() {
  return "world";
}
FeatureSyntax
Bold**text**
Italic*text*

Footnote textsuperscript works too.

Reddit formatting cheat sheet

A quick reference for every markdown rule Reddit supports. Each syntax below also works in the formatter above.

FormatSyntaxResult
Bold**text**text (bold)
Italic*text* or _text_text (italic)
Strikethrough~~text~~text (struck through)
Link[label](https://url.com)label (clickable)
Header# H1 ## H2 ### H3Heading sizes
Bullet list- itemBulleted list
Numbered list1. itemNumbered list
Blockquote> quoted textIndented quote bar
Inline code`code`code (monospace)
Code block```↵ code↵ ``` or 4-space indentMonospace block
Superscript^text or ^(grouped text)raised text
Spoiler>!hidden text!<Hidden until clicked
Table| A | B |↵ | --- | --- |↵ | 1 | 2 |Rendered table

How to format a Reddit post

Step 1

Write or paste your text

Type your post or comment into the markdown input, or paste existing text you want to format for Reddit.

Step 2

Apply formatting

Select text and use the toolbar buttons to wrap it in bold, italic, links, code, spoilers, headers, lists, or quotes.

Step 3

Check the live preview

Watch the preview pane render your markdown exactly as Reddit will display it, and fix any broken formatting before you post.

Step 4

Copy and post

Click Copy to copy the raw markdown, then paste it into Reddit's comment box or post editor (switch to markdown mode if you use the new editor).

FAQ

Reddit formatting questions

Answers to the most common Reddit markdown and text formatting questions, structured for search and AI citation.

How do I format text on Reddit?

Reddit uses a markdown-based formatting system. Wrap text in ** for bold, * for italic, and ~~ for strikethrough. Start a line with # for headers, - for bullet lists, 1. for numbered lists, and > for blockquotes. Use backticks for inline code and >! !< for spoilers. Paste your text into the Reddit formatter above to preview exactly how it will render before you post.

What is a Reddit markdown preview tool?

A Reddit markdown preview tool renders your markdown the same way Reddit does, so you can see the final formatting before publishing. The tool above shows a live preview in real time as you type, which prevents broken formatting, mis-nested lists, and unescaped characters from showing up in your post or comment.

How do I format code on Reddit?

For a single word or phrase, wrap it in backticks for inline `code`. For multiple lines, use a fenced code block with three backticks on the line before and after your code, or indent every line by four spaces. Reddit preserves whitespace inside code blocks, which is why indentation is the most reliable method for sharing code snippets.

Why does my Reddit formatting look broken?

The most common causes are missing blank lines between blocks, mixing tabs and spaces in code blocks, or special characters like *, _, and > being interpreted as formatting. Reddit's new editor and old (markdown) editor also render slightly differently. Previewing in a Reddit markdown preview tool before posting catches these issues.

Does Reddit support tables and spoilers?

Yes. Tables use pipes and a divider row: a header row, a row of dashes separated by pipes, then your data rows. Spoilers use >!text!< and appear blacked out until a reader clicks them. Both are supported in the markdown editor and render in the preview above.

Is this Reddit formatter free?

Yes, the Reddit formatter and markdown preview tool is completely free and runs entirely in your browser. Nothing you type is sent to a server. Copy the raw markdown when you are happy with the preview and paste it straight into Reddit.