Markdown Tutorial

115 words
1 minute
Markdown Tutorial

This article is a compact Markdown reference. It is useful for checking whether English content is filtered, routed, indexed, and rendered separately from Chinese content.

Block Elements#

Paragraphs and Line Breaks#

Separate paragraphs with one or more blank lines.

This is the first paragraph.

This is the second paragraph.

Use two trailing spaces to create a line break.
This line appears below the previous one.

Headings#

Markdown supports heading levels from # to ######.

# Heading 1
## Heading 2
### Heading 3

Blockquotes#

This is a blockquote.

It can contain multiple paragraphs.

Lists#

Unordered list:

  • Red
  • Green
  • Blue

Ordered list:

  1. Install dependencies.
  2. Run the development server.
  3. Open the browser.

Code Blocks#

function hello(name) {
return `Hello, ${name}`;
}
console.log(hello("Firefly"));

Tables#

FeatureSupported
LinksYes
ImagesYes
TablesYes
CodeYes

Inline Elements#

Use links, bold text, italic text, inline code, and deleted text.

Sample image
Sample image

Inline HTML#

Inline HTML can appear inside Markdown content.

Support & Share

If this article helped you, please share or support!

Sponsor
Markdown Tutorial
https://docs.bingyun.vip/en/posts/markdown/markdown-tutorial/
Author
BingYun
Published at
1970-01-01
License
CC BY-NC-SA 4.0

Comments

Profile image of BingYun
BingYun
Welcome to BingYun Docs!
Categories
Tags
Site Statistics
Posts
12
Categories
2
Tags
5
Total Words
10,808
Running Days
0 days
Last Activity
0 days ago

Table of Contents