Markdown is a lightweight markup language with plain-text formatting syntax. It is often used to format text on websites like GitHub, Reddit, and Stack Overflow.

Features of Markdown

  • Emphasis:

    • Bold: Bold Text
    • Italic: Italic Text
  • Lists:

    • Unordered list:
      • Item 1
      • Item 2
      • Item 3
    • Ordered list:
      1. First item
      2. Second item
      3. Third item
  • Links:

  • Images:

    • Markdown Logo
  • Tables:

    Header 1 Header 2
    Cell 1 Cell 2
    Cell 3 Cell 4
  • Code:

    • Inline code: code
    • Block code:
      def hello_world():
          print("Hello, World!")
      

Get Started

To get started with Markdown, you can read the official Markdown Guide.

Markdown Guide