Discord Markdown Generator

Write Discord-flavored markdown and see a live preview of exactly how it will look in Discord. Click any snippet below to insert it, then copy your finished text.

Editor

Discord Preview

Live Preview

Welcome to dlist.space 🎉



Hello! Here's some italic and bold text.

This is a block quote in Discord.


Here's inline code and a code block:

const greeting = "Hello, Discord!";
console.log(greeting);


This is a spoiler

  • Item one

  • Item two

  • Item three
  • Discord Markdown Formatting Guide

    Discord uses a simplified version of Markdown for text formatting in messages, bot responses, and embed descriptions. Unlike standard Markdown, Discord Markdown supports unique features like spoiler tags (||text||), masked links, and syntax-highlighted code blocks. Learning Discord markdown is essential for writing clear announcements, bot messages, and formatted server rules.

    Complete Discord Text Formatting Reference

    **text**Bold
    *text*Italic
    __text__Underline
    ~~text~~Strikethrough
    ||text||Spoiler (click to reveal)
    `code`Inline code
    ```code```Code block
    ```js\ncode```Syntax-highlighted code block
    > textBlock quote
    # textLarge header (H1)
    ## textMedium header (H2)
    ### textSmall header (H3)
    - itemBullet list item
    1. itemNumbered list item
    [text](url)Masked / hyperlink

    Using Markdown in Discord Bots

    All Discord markdown works in bot messages, embed descriptions, embed field values, and embed titles. In discord.js, you can use the built-in formatter utility: bold('text'), italic('text'), spoiler('text'), and inlineCode('text') from the discord.js formatters module. Note that headers (# ## ###) only render in messages and do not work inside embed fields or descriptions.