Markdown Syntax Guide

Markdown is a lightweight markup language with plain-text formatting syntax. It is often used to format text on the web, and is the default formatting for GitHub, Reddit, and many other platforms.

Basic Syntax

Here are some basic Markdown syntaxes:

  • Bold: **Bold Text** or Bold Text
  • Italic: *Italic Text* or Italic Text
  • Strikethrough: Strikethrough Text
  • Code**: Code Text
  • Blockquote: > Blockquote Text

Lists

  • Ordered List:

    1. First item
    2. Second item
    3. Third item
  • Unordered List:

    • First item
    • Second item
    • Third item

Links and Images

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

Emojis

  • 😄 - This is a happy face emoji.
  • 😢 - This is a sad face emoji.

Code Snippets

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

Enjoy using Markdown! For more information and advanced syntax, please visit the Markdown Guide.

[

Markdown Logo
]