{"id":25256952,"url":"https://github.com/thecarbun/discord-markdown-guide","last_synced_at":"2025-04-06T00:40:24.783Z","repository":{"id":200963729,"uuid":"706540930","full_name":"TheCarBun/Discord-Markdown-Guide","owner":"TheCarBun","description":"Guide to use Markdown on Discord app","archived":false,"fork":false,"pushed_at":"2023-10-18T11:00:13.000Z","size":7,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-12T06:43:38.952Z","etag":null,"topics":["discord","documentation","guide","markdown"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TheCarBun.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-10-18T06:44:10.000Z","updated_at":"2025-01-13T06:45:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"25f07ada-478f-4334-864d-e92ab0af4d09","html_url":"https://github.com/TheCarBun/Discord-Markdown-Guide","commit_stats":null,"previous_names":["thecarbun/discord-markdown-guide"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCarBun%2FDiscord-Markdown-Guide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCarBun%2FDiscord-Markdown-Guide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCarBun%2FDiscord-Markdown-Guide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCarBun%2FDiscord-Markdown-Guide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheCarBun","download_url":"https://codeload.github.com/TheCarBun/Discord-Markdown-Guide/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247419811,"owners_count":20936012,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["discord","documentation","guide","markdown"],"created_at":"2025-02-12T06:31:37.091Z","updated_at":"2025-04-06T00:40:24.760Z","avatar_url":"https://github.com/TheCarBun.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://imgur.com/ufy3LrI.png)\n\n# Contents:\n\n\n- [Organizational Text Formatting](#organizational-text-formatting)\n  - [Headers](#headers)\n  - [Masked Links](#masked-links)\n  - [Lists](#lists)\n    - [Unordered Lists](#unordered-lists)\n    - [Ordered Lists](#ordered-lists)\n\n- [Text Formatting](#text-formatting)\n  - [Italics](#italics)\n  - [Bold](#bold)\n  - [Bold Italics](#bold-italics)\n  - [Underline](#underline)\n    - [Italic Underline](#italic-underline)\n    - [Bold Underline](#bold-underline)\n    - [Bold Italic Underline](#bold-italic-underline)\n  - [Strikethrough](#strikethrough)\n  - [Spoiler Tags](#spoiler-tags)\n  \n- [Extras :](#extras)\n  - [Code Blocks](#code-blocks)\n  - [Block Quotes](#block-quotes)\n  - [Anti-Markdown](#anti-markdown)\n  - [Syntax Highlighting](#syntax-highlighting)\n  - [Time Stamps](#time-stamps)\n\n\u003cbr\u003e\n\u003chr\u003e\u003cbr\u003e\n\n# Organizational Text Formatting\n\n## Headers\n\nTo create a header, you need to include a specific number of the hash/pound sign character (#). Use (#) for a big header, (##) for a smaller header, or (###) for an even smaller header as the first character(s) in a new line.\n\n# H1\n## H2\n### H3\n\n```\n# H1\n## H2\n### H3\n```\n\n## Masked Links\n\nYou can use masked links to make text a clickable or pressable hyperlink. To do so, you need to include the text you want displayed in brackets and then the URL in parentheses. \n\u003cbr\u003e\nFor example:\n\nThis is a [masked link](www.google.com)\n```\nThis is a [masked link](use your link here)\n```\n\nIf you don't wish to embed a link, you can wrap the link with `\u003c\u003e` to remove the embed for that specific link.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\n```\n\u003cwww.google.com\u003e\n```\n\n## Lists\n\n### Unordered lists\nYou can create a bulleted list using either (-) or (\\*) in the beginning of each line. You can indent your list by adding a space before (-) or (\\*) at the beginning of each line.\n\u003cbr\u003eFor example:\u003cbr\u003e\nThis is an unordered list:\n* list item 1\n* list item 2\n  * sub list item 1\n  * sub list item 2\n* list item 3\n\n```\nThis is an unordered list:\n* list item 1\n* list item 2\n  * sub list item 1\n  * sub list item 2\n* list item 3\n```\n\n### Ordered Lists\n\nTo create an ordered list, add line items with numbers followed by periods. The numbers don't have to be in numerical order, but the list will always start with the first number. You can indent your list by adding a space before the number at the beginning of each line.\n\n\u003cbr\u003eFor example:\u003cbr\u003e\nThis is an ordered list:\n1. list item 1\n2. list item 2\n    1. sub list item 1\n    2. sub list item 2\n3. list item 3\n\n```\nThis is an ordered list:\n1. list item 1\n2. list item 2\n    1. sub list item 1\n    2. sub list item 2\n3. list item 3\n```\n\u003cbr\u003e\n\u003chr\u003e\u003cbr\u003e\n\n# Text Formatting\n\n## Italics\nUse `*` or `_` at the start and end of characters you want to make *italic*.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\nThis text is in *italics*\t\n```\nThis text is in *italics*\n```\n or\n ```\n This text is in _italics_\n```\n\n## Bold\nUse `**` at the start and end of the characters you want to **bold**.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\nThis is a **Bold** text\t\n```\nThis is a **Bold** text\n```\n\n## Bold Italics\nUse `***` at the start and end of the characters you want to set to ***bold italics***\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\nThis text is ***Bold and Italic*** \n```\nThis text is ***Bold and Italic***\n``` \n\n\n## Underline\nUse `__`(two underscores) to __underline__ texts.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\n\u003cimg src=\"https://imgur.com/167SvSk.png\" height=100px\u003e\n```\nThis text will be __underlined__\n```\n\n### Italic Underline\nUse `__*` at the start and `*__` at the end of the characters you want to __*italic and underline*__.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\n\u003cimg src=\"https://imgur.com/sFNoURz.png\" height=100px\u003e \n```\nThis text will be __*italic and underlined*__\n```\n\n### Bold Underline\nUse `__**` at the start and `**__` at the end of the characters you want to __**bold and underline**__.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\n\u003cimg src=\"https://imgur.com/9VGeTs3.png\" height=100px\u003e \n```\nThis text will be __**bold and underlined**__\n```\n\n### Bold Italic Underline\nUse `__***` at the start and `***__` at the end of the characters you want to __***bold, italic and underline***__.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\n\u003cimg src=\"https://imgur.com/gGDmZ5b.png\" height=100px\u003e \n```\nThis text will be __***bold, italic and underlined***__\n```\n\n## Strikethrough\nUse `~~` at the start and end of the characters you want to ~~strikethrough~~.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\nThis text will be ~~strikethrough~~ \n```\nThis text will be ~~strikethrough~~\n```\n\n## Spoiler Tags\nUse `||` around your text or use `/spoiler` to get spoiler text.\n\u003cbr\u003e\nFor example:\n\u003cbr\u003e\n\u003cimg src=\"https://imgur.com/hc91xGF.png\" height=100px\u003e \n```\nThis text will be in ||spoilers||\n```\n\n\u003cbr\u003e\u003cbr\u003e\u003cbr\u003e\n\n# Extras\n\n## Code Blocks\nUse backticks( \\` ) at the start and end of texts to turn them into code blocks.\n\n* Single line Code Block\n\u003cbr\u003e\n`This is a single line code block with single backticks`\n```\n`This is a single line code block with single backticks`\n```\n\n* Multi line Code Block\n```\nUse three backticks\nto get a multi line\ncode block \n```\n\n```\n```Use three backticks\nto get a multi line\ncode block ```\n```\n\n\n## Block Quotes\nUse `\u003e` with a space to get block quotes\n\u003e This is a block quote\n```\n\u003e This is a block quote\n```\nYou can also have multi line block quotes\n\u003e This is \u003cbr\u003e\n\u003e a multiline \u003cbr\u003e\n\u003e block quote\n\n```\n\u003e This is \n\u003e a multiline \n\u003e block quote\n```\n\n## Anti-Markdown\nDon't want to use markdown? You can put a backslash `/` in front of your statement, or put your message in a code block , and it'll escape the markdown formatting. You'll see those asterisks as you'd like!\n\n## Syntax Highlighting\nYou can spice up your code blocks by adding a programming language in your code block.\n\u003cbr\u003eFor example:\u003cbr\u003e\nHere `py` stands for Python\n\u003cimg src=\"https://imgur.com/Fzjbd6l.png\" height=400px\u003e\n\n```\n```py\n@requires_authorization(roles=[\"ADMIN\"])\ndef somefunc(param1='', param2=0):\n    r'''A docstring'''\n    if param1 \u003e param2: # interesting\n        print 'Gre\\'ater'\n    return (param2 - param1 + 1 + 0b10l) or None\n\nclass SomeClass:\n    pass\n\u003e\u003e\u003e message = '''interpreter   \n... prompt'''```\n```\nYou can find more about this [here](https://discord-syntax-highlighting.vercel.app/).\n\n\n## Time Stamps\nYou can add timestamps on discord which shows time relative to the user. Discord timestamps are written in the format `\u003ct:timestamp:style\u003e`\n\u003cbr\u003eFor example:\u003cbr\u003e\n\n\u003cimg src=\"https://imgur.com/F71Q9Ev.png\" height=400px\u003e\n\n| STYLE |\tEXAMPLE OUTPUT |\tDESCRIPTION |\n|-------|:--------------:|:-------------|\n|t\t|`16:20`|Short Time|\n|T\t|`16:20:30`|Long Time|\n|d\t|`20/04/2021`\t|Short Date|\n|D\t|`20 April 2021`\t|Long Date|\n|f \t|`20 April 2021 16:20`\t|Short Date/Time|\n|F\t|`Tuesday, 20 April 2021 16:20`\t|Long Date/Time|\n|R\t|`2 months ago`\t|Relative Time|\n\n\nYou can generate your own timestamps from [discord timestamp generator](https://r.3v.fi/discord-timestamps/)\n\n\n---\n\n\nNow you're a **Discord text markdown expert**. Get out there and highlight your statements!\n\n## Acknowledgements\n\n* [Discord Markdown 101](https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-)\n* [Discord Syntax Highlighting](https://discord-syntax-highlighting.vercel.app/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecarbun%2Fdiscord-markdown-guide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthecarbun%2Fdiscord-markdown-guide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecarbun%2Fdiscord-markdown-guide/lists"}