Skip to content

Instantly share code, notes, and snippets.

@JamesNK
Created April 23, 2026 07:12
Show Gist options
  • Select an option

  • Save JamesNK/75d2acb11dcb187983ea89446e3b2b00 to your computer and use it in GitHub Desktop.

Select an option

Save JamesNK/75d2acb11dcb187983ea89446e3b2b00 to your computer and use it in GitHub Desktop.

πŸ“ Markdown Feature Showcase

Welcome to a comprehensive example of markdown in action.
This document demonstrates all the main features.


1. Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

2. Emphasis

  • Italic text
  • Bold text
  • Bold and italic
  • Strikethrough
  • Underlined (via HTML)

3. Lists

Unordered list:

  • Item A
    • Sub-item A1
    • Sub-item A2
  • Item B
  • Item C

Ordered list:

  1. First
  2. Second
    1. Sub-second
    2. Sub-second again
  3. Third

Task list:

  • Done item
  • Pending item
  • Another pending item

4. Links


5. Images

Inline image:
Example

Linked image:
Example


6. Blockquotes

This is a blockquote.

Nested blockquote inside.


7. Horizontal Rules





8. Tables

Feature Supported Notes
Bold βœ… Works inside tables too
Italics βœ… Styling works fine
Links βœ… Example
Images βœ… Img
Task List ❌ Not supported in table cells

9. Inline Formatting

Superscript: XΒ²
Subscript: Hβ‚‚O
Emoji: πŸŽ‰ πŸš€ 🌍
HTML inside markdown: highlighted text


10. Footnotes

Here's a statement with a footnote.1


11. Definition Lists

Term 1
: Definition of term 1

Term 2
: Definition of term 2 with emphasis


12. Escaping Characters

*Not italic* but literal asterisks
Use a backslash for: # * [ ] ( )


13. Code Blocks

Console.WriteLine("test");

That's the full tour of markdown features.

Footnotes

  1. This is the footnote explanation. ↩

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment