Skip to content

Markdown Formatting Showcase

This document is a showcase of various Markdown formatting options you can use when writing articles for this wiki.

Make sure to check out its source code on GitHub to see how it was created!


Headings

H3: This is a Level 3 Heading

H4: This is a Level 4 Heading

H5: This is a Level 5 Heading

Text Formatting

Bold Text

Italic Text

Bold and Italic

Strikethrough Text


Lists

Unordered List

  • Item 1
  • Item 2
  • Sub-item 1
  • Sub-item 2

Ordered List

  1. First item
  2. Second item
  3. Sub-item 1
  4. Sub-item 2

Topline Studios


Images

MkDocs Logo


Code

Inline Code Example: print("Hello, World!")

Code Block:

def greet():
    print("Hello, World!")

greet()

Blockquotes

"This is a blockquote."

  • A person.

Tables

Header 1 Header 2 Header 3
Row 1, Col 1 Row 1, Col 2 Row 1, Col 3
Row 2, Col 1 Row 2, Col 2 Row 2, Col 3

Callouts (MkDocs Specific)

Note

This is an info callout. It's typically used to give helpful information.

Tip

This is a tip callout. It's typically used to offer useful advice or shortcuts.

Warning

This is a warning callout. It’s used to highlight potential issues or things to be careful about.

Danger

This is a danger callout. It's used to indicate critical issues or risks.


Quotes with Citations

"The only limit to our realization of tomorrow is our doubts of today."
β€” Franklin D. Roosevelt


Footnotes

This is a footnote1.


Task Lists

  • Completed Task
  • Incomplete Task

Definition List

Term 1
: Definition of Term 1

Term 2
: Definition of Term 2


Emojis

Here are some emojis: πŸ˜„ πŸŽ‰ πŸ‘


  1. This is the content of the footnote.