dopetalk does not endorse any advertised product nor does it accept any liability for it's use or misuse


Our Discord Notification Server invitation link is https://discord.gg/jB2qmRrxyD

Author Topic: A Comprehensive List of All Markdown (md) Syntax  (Read 171 times)

Online smfadmin (OP)

  • SMF (internal) Site
  • Administrator
  • Sr. Member
  • *****
  • Join Date: Dec 2014
  • Location: Management
  • Posts: 571
  • Reputation Power: 0
  • smfadmin has hidden their reputation power
  • Last Login:Today at 05:23:56 AM
  • Supplied Install Member
A Comprehensive List of All Markdown (md) Syntax
« on: July 15, 2026, 07:28:32 PM »
Here's a comprehensive breakdown
    of Markdown syntax, organized by category.

    For the GitHub standards visit https://markdown-it.github.io/

    1. Headers

    # H1## H2### H3#### H4##### H5###### H6

    Alternative syntax (H1/H2 only):

    H1 Header=========H2 Header---------

    2. Text Formatting

    SyntaxResult
    *italic* or _italic_italic
    **bold** or __bold__bold
    ***bold italic***bold italic
    ~~strikethrough~~strikethrough
    `inline code`inline code

    3. Lists

    Unordered:

    - Item 1- Item 2  - Nested item* Item (asterisk also works)+ Item (plus also works)

    Ordered:

    1. First item2. Second item   1. Nested item3. Third item

    Task lists (GFM extension):

    - [x] Completed task- [ ] Incomplete task

    4. Links

    [Link text](https://example.com)[Link with title](https://example.com "Title text")<https://example.com>              (auto-link)[Reference link][1][1]: https://example.com          (reference definition)

    5. Images

    ![Alt text](image.jpg)![Alt text](image.jpg "Optional title")

    6. Code Blocks

    Fenced code block (recommended):

    ```pythondef hello():    print("Hello, world!")```

    Indented code block (4 spaces):

        def hello():        print("Hello, world!")

    7. Blockquotes

    > This is a blockquote>> Nested blockquote> Multiple lines> in same quote

    8. Horizontal Rules

    ---***___

    (All three produce identical horizontal lines)

    9. Tables (GFM extension)

    | Header 1 | Header 2 | Header 3 ||----------|:--------:|---------:|| Left     | Center   | Right    || aligned  | aligned  | aligned  |

    Alignment markers:

    • :--- = left align
    • :---: = center align
    • ---: = right align

    10. Escaping Characters

    \* Not italic \*\# Not a header\[Not a link\]

    Use backslash before: \ ` * _ { } [ ] ( ) # + - . !

    11. Line Breaks

    End line with two spaces  for a line break (no new paragraph)Blank linefor a new paragraph

    12. Footnotes (Extension, not universally supported)

    Here's a sentence with a footnote.[^1][^1]: This is the footnote content.

    13. Definition Lists (Extension)

    Term: Definition 1: Definition 2

    14. GitHub-Specific Extensions

    Mentions:

    @username

    Issue/PR references:

    #123

    Emoji:

    :smile: :heart: :thumbsup:

    Syntax highlighting (language-specific):

    ```javascript``````bash``````json```

    15. HTML Embedding

    Most Markdown flavors allow raw HTML:

    <div align="center">  Centered content</div>          (manual line break)<sub>subscript</sub><sup>superscript</sup>

    Quick Reference Table

    ElementSyntax
    Header# H1
    Bold**text**
    Italic*text*
    Strikethrough~~text~~
    Link[text](url)
    Image![alt](url)
    Code`code`
    Code block ``lang `
    Blockquote> text
    List (unordered)- item
    List (ordered)1. item
    Horizontal rule---
    Table| col |
    Task list`- [

    [...truncated: increase max_tokens...]

    « Last Edit: July 18, 2026, 09:10:49 AM by Chip »
    friendly
    0
    funny
    0
    informative
    0
    agree
    0
    disagree
    0
    like
    0
    dislike
    0
    No reactions
    No reactions
    No reactions
    No reactions
    No reactions
    No reactions
    No reactions
    measure twice, cut once

    Tags:
     

    Related Topics

      Subject / Started by Replies Last post
    0 Replies
    22954 Views
    Last post March 17, 2015, 09:11:59 PM
    by smfadmin
    0 Replies
    17826 Views
    Last post September 07, 2015, 03:11:57 AM
    by St. Theresa
    3 Replies
    33687 Views
    Last post November 10, 2015, 05:22:50 AM
    by Chip
    0 Replies
    19637 Views
    Last post March 01, 2018, 08:59:45 PM
    by Chip
    2 Replies
    34168 Views
    Last post October 20, 2018, 10:46:45 PM
    by Chip
    2 Replies
    33917 Views
    Last post October 22, 2020, 04:36:35 AM
    by Chip
    0 Replies
    22590 Views
    Last post April 02, 2024, 12:32:43 PM
    by Chip
    0 Replies
    12346 Views
    Last post December 24, 2024, 05:54:32 AM
    by Chip
    0 Replies
    18595 Views
    Last post December 21, 2025, 03:36:17 PM
    by smfadmin
    0 Replies
    53 Views
    Last post July 30, 2026, 05:42:54 PM
    by Chip


    dopetalk does not endorse any advertised product nor does it accept any liability for it's use or misuse





    TERMS AND CONDITIONS

    In no event will d&u or any person involved in creating, producing, or distributing site information be liable for any direct, indirect, incidental, punitive, special or consequential damages arising out of the use of or inability to use d&u. You agree to indemnify and hold harmless d&u, its domain founders, sponsors, maintainers, server administrators, volunteers and contributors from and against all liability, claims, damages, costs and expenses, including legal fees, that arise directly or indirectly from the use of any part of the d&u site.


    TO USE THIS WEBSITE YOU MUST AGREE TO THE TERMS AND CONDITIONS ABOVE


    Founded December 2014
    SimplePortal 2.3.6 © 2008-2014, SimplePortal