跳转到内容

Heading level 1

此内容尚不支持你的语言。

Heading level 1

通常建议全篇文档只有一个一级标题,即只有一个<h1>标签。

Heading level 2

Heading level 3

Heading level 4

Heading level 5
Heading level 6

  1. 两次回车。

    This is the first paragraph.

    And this is the second paragraph.

  2. <p>标签。

    I really like using Markdown.

    I think I'll use it to format all of my documents from now on.


换行

  1. 两个空格加回车(容易看不见)。

    This is the first line.
    And this is the second line.

  2. <br>标签(最建议的方案)。

    This is the first line.
    And this is the second line.

  3. \加回车。

    This is the first line.
    And this is the second line.


  1. BoldText.(建议)

  2. I just love bold text.

    不建议多方式混用。

  3. StrongText.

  1. ItalicText.(建议)

  2. I just love italic text.

    不建议多方式混用。

  3. EmphasizedText.

  1. Bold and ItalicText.(建议)

  2. I just love bold and italic text.

    不建议多方式混用。

  3. Strong and EmphasizedText.


  1. This is a blockquote.

    This is the first line of the blockquote.

  2. This is a blockquote.
  3. multiple paragraphs.

    This is the first line of the blockquote.

    This is the second line of the blockquote.

    This is the first line of the blockquote.

    • This is the second line of the blockquote.

    This is the first line of the blockquote.

    This is the second line of the blockquote.


  1. This is an unordered list.

    • Item 1
    • Item 2
    • Item 3
    • Item 1
    • Item 2
    • Item 3
  1. This is an ordered list.

    1. Item 1
    2. Item 2
    3. Item 3
    1. Item 1
    2. Item 2
    3. Item 3
  1. This is a nested list.

    • Item 1

      I need to add another paragraph below the second list item.

      • Subitem 1

        This is a blockquote.

      • Subitem 2:

        <script>
        alert('Hello, world!');
        </script>
    • Item 2

      • Subitem 1

        Image

      • Subitem 2


  1. This is a code block.
<p>This is a paragraph.</p>

缩进式(indented)和围栏式(fenced)代码块不建议混用






Markdown语法

带标题的

Markdown语法

网址和email地址

https://markdown.com.cn

1276552337@qq.com

带格式的

I love supporting the EFF.

This is the Markdown Guide.

See the section on code.

[引用类型链接实例][1]

[hobbit-hole] [2]

[技术文档的编写] [3]

这是图片

沙漠中的岩石图片

xx

CharacterName
\ackslash
`backtick (see also escaping backticks in code)
*asterisk
_underscore
{ }curly braces
[ ]brackets
( )parentheses
#pound sign
+plus sign
-minus sign (hyphen)
.dot
!exclamation mark
|pipe (see also escaping pipe in tables)

[1] https://markdown.com.cn/basic-syntax/links.html

[2] 第二个

[3] https://www.example.com “技术文档的编写”

t1