Markdown Syntax Guide

gmero ·

This article introduces commonly used Markdown syntax.

Headings

Use # to create headings, the number indicates the level.

Text Styles

  • Bold text
  • Italic text
  • Strikethrough

This is a link

This is an image

Code

Inline code: const x = 1;

Code block:

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

Lists

Unordered list:

  • Item 1
  • Item 2
  • Item 3

Ordered list:

  1. First step
  2. Second step
  3. Third step

Blockquote

This is a quoted text. It can span multiple lines.

Table

Column 1Column 2Column 3
ABC
DEF

That’s the basic Markdown syntax!