Markdown is a lightweight markup language with plain-text formatting syntax. It is often used to format text on the web, especially in blogging platforms like GitHub Pages and WordPress.

  • Easy to Read and Write: Markdown uses plain text, so you can focus on your content instead of formatting.
  • Syntax Highlighting: It can be extended with plugins to include syntax highlighting for different programming languages.
  • Cross-Platform: It can be used on any platform that supports plain text.
  • Rich Text Formatting: It allows you to create headers, lists, links, images, and more with a simple syntax.

Quick Start

Here is an example of Markdown syntax:

  • Headers:

    # This is an H1
    ## This is an H2
    
  • Lists:

    - Unordered list item 1
    1. Ordered list item 1
    
  • Links:

    [Markdown Introduction](/en/markdown-introduction)
    
  • Images:

    ![Markdown Image](https://cloud-image.ullrai.com/q/markdown/)
    
  • Emojis:

    😊
    

For more information and resources, please visit our Markdown Guide.