Markdown语法说明及测试一览表(转载)

发布时间 2023-03-24 20:09:17作者: Cisco_coco

Markdown 目录

  • 在文中放置[toc]

Markdown 标题

  • 在标题前放置 1~6 个#

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

Markdown 段落格式

常用通用部分

  • 用 1~3 个*包裹文本分别实现斜体、粗体、粗斜体,不推荐使用 _

  • 这是*包裹的斜体文本,这是_包裹的_斜体_文本

  • 这是**包裹的粗体文本,这是__包裹的__粗体__文本

  • 这是***包裹的粗斜体文本,这是___包裹的___粗斜体___文本

非常用通用部分

  • 下标:使用~包裹文本,如 H2O

  • 上标:使用^包裹文本,如 X2

  • 高亮:使用==包裹文本,如highlight

  • 删除线:使用~~包裹文本,如删除线

  • 下划线:使用<u>包裹文本,如带下划线文本

  • 脚注:

    脚注[^脚注文本]
    [^脚注文本]: 脚注的内容
    

    脚注

  • 分隔线:3 个及以上连续的-


Markdown 列表

无序列表

-后面带一个空格,不推荐使用 +*

  • 无序列表 -

  • 无序列表 -

  • 无序列表 -

  • 无序列表 *

  • 无序列表 +

有序列表

在阿拉伯数字后面带一个.和一个空格

  1. 有序列表1.
  2. 有序列表2.

列表嵌套

  • 在无序列表中嵌套对象,需要在对象的行首放置 2 个空格。

  • 在有序列表中嵌套对象,需要在对象的行首放置 3 个空格。

  • 列表嵌套 -

    1. 列表嵌套 -1.
    • 列表嵌套 --
  1. 列表嵌套 1.
    1. 列表嵌套 1.1.
    • 列表嵌套 1.-

任务列表

+ 后面带一个空格,在空格后再带一个 [ ][ ] 的后面再带一个空格, [ ] 里面为一个空格时表示任务未完成, [ ] 里面为一个 x 时表示任务已完成。不推荐使用 -*

Markdown 表格

  • | 分隔单元格,用 - 分隔表头和其他行,用 : 控制对齐方式
| 表头   | 左对齐 | 右对齐 | 居中对齐 |
| ------ | :----- | -----: | :------: |
| 单元格 | 单元格 | 单元格 |  单元格  |
| 单元格 | 单元格 | 单元格 |  单元格  |
表头 左对齐 右对齐 居中对齐
单元格 单元格 单元格 单元格
单元格 单元格 单元格 单元格

Markdown 区块

区块引用

  • 在行首放置 1 个 >

区块引用

区块引用嵌套

在行首放置多个 > ,段落和列表的下一行放置 > 时会自动对区块引用进行嵌套

最外层

第一层嵌套

第二层嵌套

Markdown 代码

行内代码

  • ` 包裹行内代码

代码区块

  • 推荐使用```包裹代码块并声明所用语言,不推荐在代码块的行首放置 4 个空格或 1 个制表符

行首放置空格

在代码块的行首放置 4 个空格,段落和代码区块之间至少空一行。

h1  {
font-size: 24px;
text-align: left;
background-repeat: no-repeat;
background-position:center left;
}

包裹代码块:段落

段落和代码区块之间可以有空行

h1  {
font-size: 24px;
text-align: left;
background-repeat: no-repeat;
background-position:center left;
}

Markdown 链接

普通链接

<链接地址>
[链接名称](链接地址)
[链接名称](链接地址 "可选标题")

<https://markdown-here.com>
[Markdown Here](https://markdown-here.com)
[Markdown Here](https://markdown-here.com "Markdown Here 标题")

https://markdown-here.com

Markdown Here

Markdown Here

锚点链接(在文档的结尾为变量赋值)

[链接名称][网址变量]
[网址变量]:链接地址

[Markdown Here][markdown_here_url]
[Markdown_Here_url]:https://markdown-here.com

Markdown Here

Markdown 图片

一般图片链接

![alt 属性文本](图片地址)
![alt 属性文本](图片地址 '可选标题')
![alt 属性文本](图片地址 "可选标题")

![梦幻之心星](https://img.skyseeker.eu.org/icon/dream-seeker.jpg)
梦幻之心星)
![梦幻之心星](https://img.skyseeker.eu.org/icon/dream-seeker.jpg "梦幻之心星")

梦幻之心星

梦幻之心星

梦幻之心星

高级链接

  • 在文档的结尾为变量赋值
![alt 属性文本][图片地址变量]
[图片地址变量]: 图片地址

![梦幻之心星][Sky-seeker_url]
[Sky-seeker_url]: https://img.skyseeker.eu.org/icon/dream-seeker.jpg

<img src="https://markdown-here.com/img/icon256.png" width="50%">

![梦幻之心星][Sky-seeker_url]
[Sky-seeker_url]: https://img.skyseeker.eu.org/icon/dream-seeker.jpg

Markdown 高级技巧

支持的 HTML 元素

  • 不在 Markdown 涵盖范围内的标签,都能直接使用。目前支持的 HTML 元素有:<kbd> <b> <i> <em> <sup> <sub> <br>等。

    1. 使用 <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Del</kbd> 重启电脑
    2. 特殊符号 &copy; &trade; &amp; 18&ordm;C
    3. <span style="color: red;">这是一行红色的文字</span>
    4. 插入视频
    <video src="$appres/images/example.mp4"></video>
    5. Emoji 表情 :smiley:
    
    1. 使用 Ctrl+Alt+Del 重启电脑
    2. 特殊符号 © ™ & 18ºC
    3. 这是一行红色的文字
    4. 插入视频
    5. Emoji 表情 ?

转义

  • Markdown 使用了很多特殊符号来表示特定的意义,如果需要显示特定的符号则需要使用转义字符,Markdown 使用反斜杠转义特殊字符。

数学公式

  • 使用美元符 $ 包裹 TeX 或 LaTeX 格式的数学公式
  1. 行内公式 $E=mc^2$,如 E=mc2

  2. 块公式

$$
\sum_{i=1}^n a_i=0
$$

$$
\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \
\end{vmatrix}
{step1}{\style{visibility:hidden}{(x+1)(x+1)}}

\[</span> <span class="line-numbers-sizer" style="display: none;"></span><span aria-hidden="true" class="line-numbers-rows"><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span></span></code></pre> <p></p><div class="math display"><span class="MathJax_Preview" style="color: inherit;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-2-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><munderover><mo>&amp;#x2211;</mo><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mi>i</mi><mo>=</mo><mn>1</mn></mrow><mi>n</mi></munderover><msub><mi>a</mi><mi>i</mi></msub><mo>=</mo><mn>0</mn></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-9" style="width: 5.431em; display: inline-block;"><span style="display: inline-block; position: relative; width: 4.346em; height: 0px; font-size: 125%;"><span style="position: absolute; clip: rect(0.689em, 1004.29em, 3.774em, -999.997em); top: -2.397em; left: 0em;"><span class="mrow" id="MathJax-Span-10"><span class="munderover" id="MathJax-Span-11"><span style="display: inline-block; position: relative; width: 1.431em; height: 0px;"><span style="position: absolute; clip: rect(2.86em, 1001.37em, 4.631em, -999.997em); top: -3.997em; left: 0em;"><span class="mo" id="MathJax-Span-12" style="font-family: MathJax_Size2; vertical-align: 0em;">∑</span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(3.374em, 1001.09em, 4.289em, -999.997em); top: -2.911em; left: 0.174em;"><span class="texatom" id="MathJax-Span-13"><span class="mrow" id="MathJax-Span-14"><span class="mi" id="MathJax-Span-15" style="font-size: 70.7%; font-family: MathJax_Math-italic;">i</span><span class="mo" id="MathJax-Span-16" style="font-size: 70.7%; font-family: MathJax_Main;">=</span><span class="mn" id="MathJax-Span-17" style="font-size: 70.7%; font-family: MathJax_Main;">1</span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(3.431em, 1000.4em, 4.174em, -999.997em); top: -5.14em; left: 0.517em;"><span class="mi" id="MathJax-Span-18" style="font-size: 70.7%; font-family: MathJax_Math-italic;">n</span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span></span><span class="msubsup" id="MathJax-Span-19" style="padding-left: 0.174em;"><span style="display: inline-block; position: relative; width: 0.86em; height: 0px;"><span style="position: absolute; clip: rect(3.374em, 1000.52em, 4.174em, -999.997em); top: -3.997em; left: 0em;"><span class="mi" id="MathJax-Span-20" style="font-family: MathJax_Math-italic;">a</span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; top: -3.826em; left: 0.517em;"><span class="mi" id="MathJax-Span-21" style="font-size: 70.7%; font-family: MathJax_Math-italic;">i</span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span></span><span class="mo" id="MathJax-Span-22" style="font-family: MathJax_Main; padding-left: 0.289em;">=</span><span class="mn" id="MathJax-Span-23" style="font-family: MathJax_Main; padding-left: 0.289em;">0</span></span><span style="display: inline-block; width: 0px; height: 2.403em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -1.568em; border-left: 0px solid; width: 0px; height: 3.575em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><munderover><mo>∑</mo><mrow class="MJX-TeXAtom-ORD"><mi>i</mi><mo>=</mo><mn>1</mn></mrow><mi>n</mi></munderover><msub><mi>a</mi><mi>i</mi></msub><mo>=</mo><mn>0</mn></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-2">\sum_{i=1}^n a_i=0 </script></div><p></p><p></p><div class="math display"><span class="MathJax_Preview" style="color: inherit;"></span><div class="MathJax_Display" style="text-align: center;"><span class="MathJax" id="MathJax-Element-3-Frame" tabindex="0" style="text-align: center; position: relative;" data-mathml="<math xmlns=&quot;http://www.w3.org/1998/Math/MathML&quot; display=&quot;block&quot;><msub><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mi mathvariant=&quot;bold&quot;>V</mi></mrow><mn>1</mn></msub><mo>&amp;#x00D7;</mo><msub><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mi mathvariant=&quot;bold&quot;>V</mi></mrow><mn>2</mn></msub><mo>=</mo><mrow><mo>|</mo><mtable rowspacing=&quot;4pt&quot; columnspacing=&quot;1em&quot;><mtr><mtd><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mi mathvariant=&quot;bold&quot;>i</mi></mrow></mtd><mtd><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mi mathvariant=&quot;bold&quot;>j</mi></mrow></mtd><mtd><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mi mathvariant=&quot;bold&quot;>k</mi></mrow></mtd></mtr><mtr><mtd><mfrac><mrow><mi mathvariant=&quot;normal&quot;>&amp;#x2202;</mi><mi>X</mi></mrow><mrow><mi mathvariant=&quot;normal&quot;>&amp;#x2202;</mi><mi>u</mi></mrow></mfrac></mtd><mtd><mfrac><mrow><mi mathvariant=&quot;normal&quot;>&amp;#x2202;</mi><mi>Y</mi></mrow><mrow><mi mathvariant=&quot;normal&quot;>&amp;#x2202;</mi><mi>u</mi></mrow></mfrac></mtd><mtd><mn>0</mn></mtd></mtr><mtr><mtd><mfrac><mrow><mi mathvariant=&quot;normal&quot;>&amp;#x2202;</mi><mi>X</mi></mrow><mrow><mi mathvariant=&quot;normal&quot;>&amp;#x2202;</mi><mi>v</mi></mrow></mfrac></mtd><mtd><mfrac><mrow><mi mathvariant=&quot;normal&quot;>&amp;#x2202;</mi><mi>Y</mi></mrow><mrow><mi mathvariant=&quot;normal&quot;>&amp;#x2202;</mi><mi>v</mi></mrow></mfrac></mtd><mtd><mn>0</mn></mtd></mtr></mtable><mo>|</mo></mrow><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mo>$</mo></mrow><mi>t</mi><mi>e</mi><mi>p</mi><mn>1</mn></mrow><mrow class=&quot;MJX-TeXAtom-ORD&quot;><mrow style=&quot;visibility:hidden&quot;><mo stretchy=&quot;false&quot;>(</mo><mi>x</mi><mo>+</mo><mn>1</mn><mo stretchy=&quot;false&quot;>)</mo><mo stretchy=&quot;false&quot;>(</mo><mi>x</mi><mo>+</mo><mn>1</mn><mo stretchy=&quot;false&quot;>)</mo></mrow></mrow></math>" role="presentation"><nobr aria-hidden="true"><span class="math" id="MathJax-Span-24" style="width: 25.146em; display: inline-block;"><span style="display: inline-block; position: relative; width: 20.117em; height: 0px; font-size: 125%;"><span style="position: absolute; clip: rect(2.231em, 1020em, 7.089em, -999.997em); top: -4.911em; left: 0em;"><span class="mrow" id="MathJax-Span-25"><span class="msubsup" id="MathJax-Span-26"><span style="display: inline-block; position: relative; width: 1.317em; height: 0px;"><span style="position: absolute; clip: rect(3.146em, 1000.86em, 4.174em, -999.997em); top: -3.997em; left: 0em;"><span class="texatom" id="MathJax-Span-27"><span class="mrow" id="MathJax-Span-28"><span class="mi" id="MathJax-Span-29" style="font-family: MathJax_Main-bold;">V</span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; top: -3.826em; left: 0.86em;"><span class="mn" id="MathJax-Span-30" style="font-size: 70.7%; font-family: MathJax_Main;">1</span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span></span><span class="mo" id="MathJax-Span-31" style="font-family: MathJax_Main; padding-left: 0.231em;">×</span><span class="msubsup" id="MathJax-Span-32" style="padding-left: 0.231em;"><span style="display: inline-block; position: relative; width: 1.317em; height: 0px;"><span style="position: absolute; clip: rect(3.146em, 1000.86em, 4.174em, -999.997em); top: -3.997em; left: 0em;"><span class="texatom" id="MathJax-Span-33"><span class="mrow" id="MathJax-Span-34"><span class="mi" id="MathJax-Span-35" style="font-family: MathJax_Main-bold;">V</span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; top: -3.826em; left: 0.86em;"><span class="mn" id="MathJax-Span-36" style="font-size: 70.7%; font-family: MathJax_Main;">2</span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span></span><span class="mo" id="MathJax-Span-37" style="font-family: MathJax_Main; padding-left: 0.289em;">=</span><span class="mrow" id="MathJax-Span-38" style="padding-left: 0.289em;"><span class="mo" id="MathJax-Span-39" style="vertical-align: 2.517em;"><span style="display: inline-block; position: relative; width: 0.289em; height: 0px;"><span style="position: absolute; font-family: MathJax_Main; top: -3.254em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; font-family: MathJax_Main; top: 0.289em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="font-family: MathJax_Main; position: absolute; top: -2.34em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="font-family: MathJax_Main; position: absolute; top: -1.483em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="font-family: MathJax_Main; position: absolute; top: -0.569em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span></span><span class="mtable" id="MathJax-Span-40"><span style="display: inline-block; position: relative; width: 5.26em; height: 0px; margin-right: 0.174em; margin-left: 0.174em;"><span style="position: absolute; clip: rect(2.86em, 1001.37em, 7.603em, -999.997em); top: -5.426em; left: 0em;"><span style="display: inline-block; position: relative; width: 1.374em; height: 0px;"><span style="position: absolute; clip: rect(3.146em, 1000.29em, 4.174em, -999.997em); top: -5.711em; left: 50%; margin-left: -0.169em;"><span class="mtd" id="MathJax-Span-41"><span class="mrow" id="MathJax-Span-42"><span class="texatom" id="MathJax-Span-43"><span class="mrow" id="MathJax-Span-44"><span class="mi" id="MathJax-Span-45" style="font-family: MathJax_Main-bold;">i</span></span></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(2.917em, 1001.37em, 4.631em, -999.997em); top: -4.169em; left: 50%; margin-left: -0.683em;"><span class="mtd" id="MathJax-Span-56"><span class="mrow" id="MathJax-Span-57"><span class="mfrac" id="MathJax-Span-58"><span style="display: inline-block; position: relative; width: 1.146em; height: 0px; margin-right: 0.117em; margin-left: 0.117em;"><span style="position: absolute; clip: rect(3.317em, 1001.03em, 4.174em, -999.997em); top: -4.454em; left: 50%; margin-left: -0.511em;"><span class="mrow" id="MathJax-Span-59"><span class="mi" id="MathJax-Span-60" style="font-size: 70.7%; font-family: MathJax_Main;">∂<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span><span class="mi" id="MathJax-Span-61" style="font-size: 70.7%; font-family: MathJax_Math-italic;">X<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(3.317em, 1000.8em, 4.174em, -999.997em); top: -3.597em; left: 50%; margin-left: -0.397em;"><span class="mrow" id="MathJax-Span-62"><span class="mi" id="MathJax-Span-63" style="font-size: 70.7%; font-family: MathJax_Main;">∂<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span><span class="mi" id="MathJax-Span-64" style="font-size: 70.7%; font-family: MathJax_Math-italic;">u</span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(0.86em, 1001.15em, 1.26em, -999.997em); top: -1.311em; left: 0em;"><span style="display: inline-block; overflow: hidden; vertical-align: 0em; border-top: 1.3px solid; width: 1.146em; height: 0px;"></span><span style="display: inline-block; width: 0px; height: 1.089em;"></span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(2.917em, 1001.37em, 4.631em, -999.997em); top: -2.397em; left: 50%; margin-left: -0.683em;"><span class="mtd" id="MathJax-Span-77"><span class="mrow" id="MathJax-Span-78"><span class="mfrac" id="MathJax-Span-79"><span style="display: inline-block; position: relative; width: 1.146em; height: 0px; margin-right: 0.117em; margin-left: 0.117em;"><span style="position: absolute; clip: rect(3.317em, 1001.03em, 4.174em, -999.997em); top: -4.454em; left: 50%; margin-left: -0.511em;"><span class="mrow" id="MathJax-Span-80"><span class="mi" id="MathJax-Span-81" style="font-size: 70.7%; font-family: MathJax_Main;">∂<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span><span class="mi" id="MathJax-Span-82" style="font-size: 70.7%; font-family: MathJax_Math-italic;">X<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(3.317em, 1000.75em, 4.174em, -999.997em); top: -3.597em; left: 50%; margin-left: -0.397em;"><span class="mrow" id="MathJax-Span-83"><span class="mi" id="MathJax-Span-84" style="font-size: 70.7%; font-family: MathJax_Main;">∂<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span><span class="mi" id="MathJax-Span-85" style="font-size: 70.7%; font-family: MathJax_Math-italic;">v</span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(0.86em, 1001.15em, 1.26em, -999.997em); top: -1.311em; left: 0em;"><span style="display: inline-block; overflow: hidden; vertical-align: 0em; border-top: 1.3px solid; width: 1.146em; height: 0px;"></span><span style="display: inline-block; width: 0px; height: 1.089em;"></span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span><span style="display: inline-block; width: 0px; height: 5.431em;"></span></span><span style="position: absolute; clip: rect(2.86em, 1001.32em, 7.603em, -999.997em); top: -5.426em; left: 2.346em;"><span style="display: inline-block; position: relative; width: 1.317em; height: 0px;"><span style="position: absolute; clip: rect(3.146em, 1000.29em, 4.403em, -999.997em); top: -5.711em; left: 50%; margin-left: -0.169em;"><span class="mtd" id="MathJax-Span-46"><span class="mrow" id="MathJax-Span-47"><span class="texatom" id="MathJax-Span-48"><span class="mrow" id="MathJax-Span-49"><span class="mi" id="MathJax-Span-50" style="font-family: MathJax_Main-bold;">j</span></span></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(2.917em, 1001.32em, 4.631em, -999.997em); top: -4.169em; left: 50%; margin-left: -0.626em;"><span class="mtd" id="MathJax-Span-65"><span class="mrow" id="MathJax-Span-66"><span class="mfrac" id="MathJax-Span-67"><span style="display: inline-block; position: relative; width: 1.089em; height: 0px; margin-right: 0.117em; margin-left: 0.117em;"><span style="position: absolute; clip: rect(3.317em, 1000.92em, 4.174em, -999.997em); top: -4.454em; left: 50%; margin-left: -0.454em;"><span class="mrow" id="MathJax-Span-68"><span class="mi" id="MathJax-Span-69" style="font-size: 70.7%; font-family: MathJax_Main;">∂<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span><span class="mi" id="MathJax-Span-70" style="font-size: 70.7%; font-family: MathJax_Math-italic;">Y<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.117em;"></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(3.317em, 1000.8em, 4.174em, -999.997em); top: -3.597em; left: 50%; margin-left: -0.397em;"><span class="mrow" id="MathJax-Span-71"><span class="mi" id="MathJax-Span-72" style="font-size: 70.7%; font-family: MathJax_Main;">∂<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span><span class="mi" id="MathJax-Span-73" style="font-size: 70.7%; font-family: MathJax_Math-italic;">u</span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(0.86em, 1001.09em, 1.26em, -999.997em); top: -1.311em; left: 0em;"><span style="display: inline-block; overflow: hidden; vertical-align: 0em; border-top: 1.3px solid; width: 1.089em; height: 0px;"></span><span style="display: inline-block; width: 0px; height: 1.089em;"></span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(2.917em, 1001.32em, 4.631em, -999.997em); top: -2.397em; left: 50%; margin-left: -0.626em;"><span class="mtd" id="MathJax-Span-86"><span class="mrow" id="MathJax-Span-87"><span class="mfrac" id="MathJax-Span-88"><span style="display: inline-block; position: relative; width: 1.089em; height: 0px; margin-right: 0.117em; margin-left: 0.117em;"><span style="position: absolute; clip: rect(3.317em, 1000.92em, 4.174em, -999.997em); top: -4.454em; left: 50%; margin-left: -0.454em;"><span class="mrow" id="MathJax-Span-89"><span class="mi" id="MathJax-Span-90" style="font-size: 70.7%; font-family: MathJax_Main;">∂<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span><span class="mi" id="MathJax-Span-91" style="font-size: 70.7%; font-family: MathJax_Math-italic;">Y<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.117em;"></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(3.317em, 1000.75em, 4.174em, -999.997em); top: -3.597em; left: 50%; margin-left: -0.397em;"><span class="mrow" id="MathJax-Span-92"><span class="mi" id="MathJax-Span-93" style="font-size: 70.7%; font-family: MathJax_Main;">∂<span style="display: inline-block; overflow: hidden; height: 1px; width: 0.003em;"></span></span><span class="mi" id="MathJax-Span-94" style="font-size: 70.7%; font-family: MathJax_Math-italic;">v</span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(0.86em, 1001.09em, 1.26em, -999.997em); top: -1.311em; left: 0em;"><span style="display: inline-block; overflow: hidden; vertical-align: 0em; border-top: 1.3px solid; width: 1.089em; height: 0px;"></span><span style="display: inline-block; width: 0px; height: 1.089em;"></span></span></span></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span><span style="display: inline-block; width: 0px; height: 5.431em;"></span></span><span style="position: absolute; clip: rect(2.46em, 1000.57em, 6.803em, -999.997em); top: -5.026em; left: 4.689em;"><span style="display: inline-block; position: relative; width: 0.631em; height: 0px;"><span style="position: absolute; clip: rect(3.146em, 1000.57em, 4.174em, -999.997em); top: -5.711em; left: 50%; margin-left: -0.283em;"><span class="mtd" id="MathJax-Span-51"><span class="mrow" id="MathJax-Span-52"><span class="texatom" id="MathJax-Span-53"><span class="mrow" id="MathJax-Span-54"><span class="mi" id="MathJax-Span-55" style="font-family: MathJax_Main-bold;">k</span></span></span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(3.146em, 1000.46em, 4.174em, -999.997em); top: -4.169em; left: 50%; margin-left: -0.226em;"><span class="mtd" id="MathJax-Span-74"><span class="mrow" id="MathJax-Span-75"><span class="mn" id="MathJax-Span-76" style="font-family: MathJax_Main;">0</span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; clip: rect(3.146em, 1000.46em, 4.174em, -999.997em); top: -2.397em; left: 50%; margin-left: -0.226em;"><span class="mtd" id="MathJax-Span-95"><span class="mrow" id="MathJax-Span-96"><span class="mn" id="MathJax-Span-97" style="font-family: MathJax_Main;">0</span></span></span><span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span><span style="display: inline-block; width: 0px; height: 5.031em;"></span></span></span></span><span class="mo" id="MathJax-Span-98" style="vertical-align: 2.517em;"><span style="display: inline-block; position: relative; width: 0.289em; height: 0px;"><span style="position: absolute; font-family: MathJax_Main; top: -3.254em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="position: absolute; font-family: MathJax_Main; top: 0.289em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="font-family: MathJax_Main; position: absolute; top: -2.34em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="font-family: MathJax_Main; position: absolute; top: -1.483em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span><span style="font-family: MathJax_Main; position: absolute; top: -0.569em; left: 0em;">∣<span style="display: inline-block; width: 0px; height: 4.003em;"></span></span></span></span></span><span class="texatom" id="MathJax-Span-99" style="padding-left: 0.174em;"><span class="mrow" id="MathJax-Span-100"><span class="texatom" id="MathJax-Span-101"><span class="mrow" id="MathJax-Span-102"><span class="mo" id="MathJax-Span-103" style="font-family: MathJax_Main;">$</span></span></span><span class="mi" id="MathJax-Span-104" style="font-family: MathJax_Math-italic;">t</span><span class="mi" id="MathJax-Span-105" style="font-family: MathJax_Math-italic;">e</span><span class="mi" id="MathJax-Span-106" style="font-family: MathJax_Math-italic;">p</span><span class="mn" id="MathJax-Span-107" style="font-family: MathJax_Main;">1</span></span></span><span class="texatom" id="MathJax-Span-108"><span class="mrow" id="MathJax-Span-109"><span class="mrow" id="MathJax-Span-110" style="visibility: hidden;"><span class="mo" id="MathJax-Span-111" style="font-family: MathJax_Main;">(</span><span class="mi" id="MathJax-Span-112" style="font-family: MathJax_Math-italic;">x</span><span class="mo" id="MathJax-Span-113" style="font-family: MathJax_Main; padding-left: 0.231em;">+</span><span class="mn" id="MathJax-Span-114" style="font-family: MathJax_Main; padding-left: 0.231em;">1</span><span class="mo" id="MathJax-Span-115" style="font-family: MathJax_Main;">)</span><span class="mo" id="MathJax-Span-116" style="font-family: MathJax_Main;">(</span><span class="mi" id="MathJax-Span-117" style="font-family: MathJax_Math-italic;">x</span><span class="mo" id="MathJax-Span-118" style="font-family: MathJax_Main; padding-left: 0.231em;">+</span><span class="mn" id="MathJax-Span-119" style="font-family: MathJax_Main; padding-left: 0.231em;">1</span><span class="mo" id="MathJax-Span-120" style="font-family: MathJax_Main;">)</span></span></span></span></span><span style="display: inline-block; width: 0px; height: 4.917em;"></span></span></span><span style="display: inline-block; overflow: hidden; vertical-align: -2.568em; border-left: 0px solid; width: 0px; height: 5.861em;"></span></span></nobr><span class="MJX_Assistive_MathML MJX_Assistive_MathML_Block" role="presentation"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><msub><mrow class="MJX-TeXAtom-ORD"><mi mathvariant="bold">V</mi></mrow><mn>1</mn></msub><mo>×</mo><msub><mrow class="MJX-TeXAtom-ORD"><mi mathvariant="bold">V</mi></mrow><mn>2</mn></msub><mo>=</mo><mrow><mo>|</mo><mtable rowspacing="4pt" columnspacing="1em"><mtr><mtd><mrow class="MJX-TeXAtom-ORD"><mi mathvariant="bold">i</mi></mrow></mtd><mtd><mrow class="MJX-TeXAtom-ORD"><mi mathvariant="bold">j</mi></mrow></mtd><mtd><mrow class="MJX-TeXAtom-ORD"><mi mathvariant="bold">k</mi></mrow></mtd></mtr><mtr><mtd><mfrac><mrow><mi mathvariant="normal">∂</mi><mi>X</mi></mrow><mrow><mi mathvariant="normal">∂</mi><mi>u</mi></mrow></mfrac></mtd><mtd><mfrac><mrow><mi mathvariant="normal">∂</mi><mi>Y</mi></mrow><mrow><mi mathvariant="normal">∂</mi><mi>u</mi></mrow></mfrac></mtd><mtd><mn>0</mn></mtd></mtr><mtr><mtd><mfrac><mrow><mi mathvariant="normal">∂</mi><mi>X</mi></mrow><mrow><mi mathvariant="normal">∂</mi><mi>v</mi></mrow></mfrac></mtd><mtd><mfrac><mrow><mi mathvariant="normal">∂</mi><mi>Y</mi></mrow><mrow><mi mathvariant="normal">∂</mi><mi>v</mi></mrow></mfrac></mtd><mtd><mn>0</mn></mtd></mtr></mtable><mo>|</mo></mrow><mrow class="MJX-TeXAtom-ORD"><mrow class="MJX-TeXAtom-ORD"><mo>$</mo></mrow><mi>t</mi><mi>e</mi><mi>p</mi><mn>1</mn></mrow><mrow class="MJX-TeXAtom-ORD"><mrow style="visibility:hidden"><mo stretchy="false">(</mo><mi>x</mi><mo>+</mo><mn>1</mn><mo stretchy="false">)</mo><mo stretchy="false">(</mo><mi>x</mi><mo>+</mo><mn>1</mn><mo stretchy="false">)</mo></mrow></mrow></math></span></span></div><script type="math/tex; mode=display" id="MathJax-Element-3">\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix} \mathbf{i} & \mathbf{j} & \mathbf{k} \\ \frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\ \frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \\ \end{vmatrix} {$tep1}{\style{visibility:hidden}{(x+1)(x+1)}} </script></div><p></p><h3 id="blogTitle29">画图<button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h3> <h4 id="饼图-mermaid-pie">饼图 <code>mermaid pie</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <div class="mermaid" data-processed="true"><svg id="mermaid-1679658923456" width="100%" xmlns="http://www.w3.org/2000/svg" height="450" style="max-width: 818px;" viewBox="0 0 818 450"><style>#mermaid-1679658923456 {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-1679658923456 .error-icon{fill:#552222;}#mermaid-1679658923456 .error-text{fill:#552222;stroke:#552222;}#mermaid-1679658923456 .edge-thickness-normal{stroke-width:2px;}#mermaid-1679658923456 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1679658923456 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1679658923456 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1679658923456 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1679658923456 .marker{fill:#333333;stroke:#333333;}#mermaid-1679658923456 .marker.cross{stroke:#333333;}#mermaid-1679658923456 svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-1679658923456 .pieCircle{stroke:black;stroke-width:2px;opacity:0.7;}#mermaid-1679658923456 .pieTitleText{text-anchor:middle;font-size:25px;fill:black;font-family:"trebuchet ms",verdana,arial,sans-serif;}#mermaid-1679658923456 .slice{font-family:"trebuchet ms",verdana,arial,sans-serif;fill:#333;font-size:17px;}#mermaid-1679658923456 .legend text{fill:black;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:17px;}#mermaid-1679658923456 :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}</style><g></g><g transform="translate(409,225)"><path d="M42.237228123611345,180.11389885412513A185,185,0,0,1,-141.76816525308922,-118.85616231720081L0,0Z" fill="#ECECFF" class="pieCircle"></path><path d="M1.1327982892113017e-14,-185A185,185,0,0,1,42.237228123611345,180.11389885412513L0,0Z" fill="#ffffde" class="pieCircle"></path><path d="M-141.76816525308922,-118.85616231720081A185,185,0,0,1,-53.0490527880011,-177.23091716259856L0,0Z" fill="hsl(80, 100%, 56.2745098039%)" class="pieCircle"></path><path d="M-53.0490527880011,-177.23091716259856A185,185,0,0,1,1.303290589681841e-13,-185L0,0Z" fill="hsl(240, 100%, 86.2745098039%)" class="pieCircle"></path><text transform="translate(-78.77559303277985,48.48356363071764)" class="slice" style="text-anchor: middle;">40%</text><text transform="translate(91.88720754817638,-10.629726666210965)" class="slice" style="text-anchor: middle;">46%</text><text transform="translate(-50.843731452688694,-77.27331345274948)" class="slice" style="text-anchor: middle;">9%</text><text transform="translate(-13.40373233897587,-91.52371255245873)" class="slice" style="text-anchor: middle;">5%</text><text x="0" y="-200" class="pieTitleText">饼图</text><g class="legend" transform="translate(216,-44)"><rect width="18" height="18" style="fill: rgb(236, 236, 255); stroke: rgb(236, 236, 255);"></rect><text x="22" y="14">Joplin</text></g><g class="legend" transform="translate(216,-22)"><rect width="18" height="18" style="fill: rgb(255, 255, 222); stroke: rgb(255, 255, 222);"></rect><text x="22" y="14">Qdown</text></g><g class="legend" transform="translate(216,0)"><rect width="18" height="18" style="fill: rgb(181, 255, 32); stroke: rgb(181, 255, 32);"></rect><text x="22" y="14"> 黑科技</text></g><g class="legend" transform="translate(216,22)"><rect width="18" height="18" style="fill: rgb(185, 185, 255); stroke: rgb(185, 185, 255);"></rect><text x="22" y="14">其它</text></g></g></svg></div><h4 id="横向流程图-mermaid-graph-lr">横向流程图 <code>mermaid graph LR</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <div class="mermaid" data-processed="true"><svg id="mermaid-1679658923462" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="212.9921875" style="max-width: 501.8609313964844px;" viewBox="0 0 501.8609313964844 212.9921875"><style>#mermaid-1679658923462 {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-1679658923462 .error-icon{fill:#552222;}#mermaid-1679658923462 .error-text{fill:#552222;stroke:#552222;}#mermaid-1679658923462 .edge-thickness-normal{stroke-width:2px;}#mermaid-1679658923462 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1679658923462 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1679658923462 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1679658923462 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1679658923462 .marker{fill:#333333;stroke:#333333;}#mermaid-1679658923462 .marker.cross{stroke:#333333;}#mermaid-1679658923462 svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-1679658923462 .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#333;}#mermaid-1679658923462 .cluster-label text{fill:#333;}#mermaid-1679658923462 .cluster-label span{color:#333;}#mermaid-1679658923462 .label text,#mermaid-1679658923462 span{fill:#333;color:#333;}#mermaid-1679658923462 .node rect,#mermaid-1679658923462 .node circle,#mermaid-1679658923462 .node ellipse,#mermaid-1679658923462 .node polygon,#mermaid-1679658923462 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-1679658923462 .node .label{text-align:center;}#mermaid-1679658923462 .node.clickable{cursor:pointer;}#mermaid-1679658923462 .arrowheadPath{fill:#333333;}#mermaid-1679658923462 .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-1679658923462 .flowchart-link{stroke:#333333;fill:none;}#mermaid-1679658923462 .edgeLabel{background-color:#e8e8e8;text-align:center;}#mermaid-1679658923462 .edgeLabel rect{opacity:0.5;background-color:#e8e8e8;fill:#e8e8e8;}#mermaid-1679658923462 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-1679658923462 .cluster text{fill:#333;}#mermaid-1679658923462 .cluster span{color:#333;}#mermaid-1679658923462 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-1679658923462 :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}</style><g><g class="output"><g class="clusters"></g><g class="edgePaths"><g class="edgePath LS-A LE-B" style="opacity: 1;" id="L-A-B"><path class="path" d="M84,81.796875L92.16666666666667,81.796875C100.33333333333333,81.796875,116.66666666666667,81.796875,129,81.796875C141.33333333333334,81.796875,149.66666666666666,81.796875,153.83333333333334,81.796875L158,81.796875" marker-end="url(#arrowhead20)" style="fill:none"></path><defs><marker id="arrowhead20" viewBox="0 0 10 10" refX="9" refY="5" markerUnits="strokeWidth" markerWidth="8" markerHeight="6" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowheadPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"></path></marker></defs></g><g class="edgePath LS-B LE-C" style="opacity: 1;" id="L-B-C"><path class="path" d="M210,81.796875L214.16666666666666,81.796875C218.33333333333334,81.796875,226.66666666666666,81.796875,235.0833334604899,81.88020833333333C243.50000025431314,81.96354166666667,252.0000005086263,82.13020833333333,256.2500006357829,82.21354166666667L260.50000076293946,82.296875" marker-end="url(#arrowhead21)" style="fill:none"></path><defs><marker id="arrowhead21" viewBox="0 0 10 10" refX="9" refY="5" markerUnits="strokeWidth" markerWidth="8" markerHeight="6" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowheadPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"></path></marker></defs></g><g class="edgePath LS-C LE-D" style="opacity: 1;" id="L-C-D"><path class="path" d="M340.95100110821073,64.46506284527138L350.1052615944888,59.12062528772615C359.25952208076677,53.776187730180915,377.5680430533228,43.08731261509046,392.9879285396009,37.74287505754523C408.4078140258789,32.3984375,420.9390640258789,32.3984375,427.2046890258789,32.3984375L433.4703140258789,32.3984375" marker-end="url(#arrowhead22)" style="fill:none"></path><defs><marker id="arrowhead22" viewBox="0 0 10 10" refX="9" refY="5" markerUnits="strokeWidth" markerWidth="8" markerHeight="6" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowheadPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"></path></marker></defs></g><g class="edgePath LS-C LE-E" style="opacity: 1;" id="L-C-E"><path class="path" d="M340.9510001360235,100.12868660103697L350.10526078433276,105.30645758419747C359.259521432642,110.48422856735799,377.56804272926047,120.83977053367899,392.9879283775697,126.0175415168395C408.4078140258789,131.1953125,420.9390640258789,131.1953125,427.2046890258789,131.1953125L433.4703140258789,131.1953125" marker-end="url(#arrowhead23)" style="fill:none"></path><defs><marker id="arrowhead23" viewBox="0 0 10 10" refX="9" refY="5" markerUnits="strokeWidth" markerWidth="8" markerHeight="6" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowheadPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"></path></marker></defs></g></g><g class="edgeLabels"><g class="edgeLabel" style="opacity: 1;" transform=""><g transform="translate(0,0)" class="label"><rect rx="0" ry="0" width="0" height="0"></rect><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"><span id="L-L-A-B" class="edgeLabel L-LS-A' L-LE-B"></span></div></foreignObject></g></g><g class="edgeLabel" style="opacity: 1;" transform=""><g transform="translate(0,0)" class="label"><rect rx="0" ry="0" width="0" height="0"></rect><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"><span id="L-L-B-C" class="edgeLabel L-LS-B' L-LE-C"></span></div></foreignObject></g></g><g class="edgeLabel" style="opacity: 1;" transform="translate(395.8765640258789,32.3984375)"><g transform="translate(-12.59375,-14.3984375)" class="label"><rect rx="0" ry="0" width="25.1875" height="28.796875"></rect><foreignObject width="25.1875" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"><span id="L-L-C-D" class="edgeLabel L-LS-C' L-LE-D">a=1</span></div></foreignObject></g></g><g class="edgeLabel" style="opacity: 1;" transform="translate(395.8765640258789,131.1953125)"><g transform="translate(-12.59375,-14.3984375)" class="label"><rect rx="0" ry="0" width="25.1875" height="28.796875"></rect><foreignObject width="25.1875" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"><span id="L-L-C-E" class="edgeLabel L-LS-C' L-LE-E">a=2</span></div></foreignObject></g></g></g><g class="nodes"><g class="node default" style="opacity: 1;" id="flowchart-A-9" transform="translate(58,81.796875)"><rect rx="0" ry="0" x="-26" y="-24.3984375" width="52" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-16,-14.3984375)"><foreignObject width="32" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">方形</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-B-10" transform="translate(184,81.796875)"><rect rx="5" ry="5" x="-26" y="-24.3984375" width="52" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-16,-14.3984375)"><foreignObject width="32" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">圆角</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-C-12" transform="translate(309.14140701293945,81.796875)"><polygon points="49.14140625,0 98.2828125,-49.14140625 49.14140625,-98.2828125 0,-49.14140625" transform="translate(-49.14140625,49.14140625)" class="label-container"></polygon><g class="label" transform="translate(0,0)"><g transform="translate(-20.203125,-14.3984375)"><foreignObject width="40.40625" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">条件a</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-D-14" transform="translate(463.6656265258789,32.3984375)"><rect rx="0" ry="0" x="-30.1953125" y="-24.3984375" width="60.390625" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-20.1953125,-14.3984375)"><foreignObject width="40.390625" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">结果1</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-E-16" transform="translate(463.6656265258789,131.1953125)"><rect rx="0" ry="0" x="-30.1953125" y="-24.3984375" width="60.390625" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-20.1953125,-14.3984375)"><foreignObject width="40.390625" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">结果2</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-F-17" transform="translate(58,180.59375)"><rect rx="0" ry="0" x="-50" y="-24.3984375" width="100" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-40,-14.3984375)"><foreignObject width="80" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">横向流程图</div></foreignObject></g></g></g></g></g></g></svg></div><h4 id="竖向流程图-mermaid-graph-td">竖向流程图 <code>mermaid graph TD</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <div class="mermaid" data-processed="true"><svg id="mermaid-1679658923508" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="439.4703063964844" style="max-width: 277.390625px;" viewBox="0 0 277.390625 439.4703063964844"><style>#mermaid-1679658923508 {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-1679658923508 .error-icon{fill:#552222;}#mermaid-1679658923508 .error-text{fill:#552222;stroke:#552222;}#mermaid-1679658923508 .edge-thickness-normal{stroke-width:2px;}#mermaid-1679658923508 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1679658923508 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1679658923508 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1679658923508 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1679658923508 .marker{fill:#333333;stroke:#333333;}#mermaid-1679658923508 .marker.cross{stroke:#333333;}#mermaid-1679658923508 svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-1679658923508 .label{font-family:"trebuchet ms",verdana,arial,sans-serif;color:#333;}#mermaid-1679658923508 .cluster-label text{fill:#333;}#mermaid-1679658923508 .cluster-label span{color:#333;}#mermaid-1679658923508 .label text,#mermaid-1679658923508 span{fill:#333;color:#333;}#mermaid-1679658923508 .node rect,#mermaid-1679658923508 .node circle,#mermaid-1679658923508 .node ellipse,#mermaid-1679658923508 .node polygon,#mermaid-1679658923508 .node path{fill:#ECECFF;stroke:#9370DB;stroke-width:1px;}#mermaid-1679658923508 .node .label{text-align:center;}#mermaid-1679658923508 .node.clickable{cursor:pointer;}#mermaid-1679658923508 .arrowheadPath{fill:#333333;}#mermaid-1679658923508 .edgePath .path{stroke:#333333;stroke-width:2.0px;}#mermaid-1679658923508 .flowchart-link{stroke:#333333;fill:none;}#mermaid-1679658923508 .edgeLabel{background-color:#e8e8e8;text-align:center;}#mermaid-1679658923508 .edgeLabel rect{opacity:0.5;background-color:#e8e8e8;fill:#e8e8e8;}#mermaid-1679658923508 .cluster rect{fill:#ffffde;stroke:#aaaa33;stroke-width:1px;}#mermaid-1679658923508 .cluster text{fill:#333;}#mermaid-1679658923508 .cluster span{color:#333;}#mermaid-1679658923508 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:12px;background:hsl(80, 100%, 96.2745098039%);border:1px solid #aaaa33;border-radius:2px;pointer-events:none;z-index:100;}#mermaid-1679658923508 :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}</style><g><g class="output"><g class="clusters"></g><g class="edgePaths"><g class="edgePath LS-A LE-B" style="opacity: 1;" id="L-A-B"><path class="path" d="M93.390625,56.796875L93.390625,60.963541666666664C93.390625,65.13020833333333,93.390625,73.46354166666667,93.390625,81.796875C93.390625,90.13020833333333,93.390625,98.46354166666667,93.390625,102.63020833333333L93.390625,106.796875" marker-end="url(#arrowhead43)" style="fill:none"></path><defs><marker id="arrowhead43" viewBox="0 0 10 10" refX="9" refY="5" markerUnits="strokeWidth" markerWidth="8" markerHeight="6" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowheadPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"></path></marker></defs></g><g class="edgePath LS-B LE-C" style="opacity: 1;" id="L-B-C"><path class="path" d="M93.390625,155.59375L93.390625,159.76041666666666C93.390625,163.92708333333334,93.390625,172.26041666666666,93.47395833333333,180.6770834604899C93.55729166666667,189.09375025431314,93.72395833333333,197.59375050862627,93.80729166666667,201.84375063578284L93.890625,206.0937507629394" marker-end="url(#arrowhead44)" style="fill:none"></path><defs><marker id="arrowhead44" viewBox="0 0 10 10" refX="9" refY="5" markerUnits="strokeWidth" markerWidth="8" markerHeight="6" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowheadPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"></path></marker></defs></g><g class="edgePath LS-C LE-D" style="opacity: 1;" id="L-C-D"><path class="path" d="M75.01997893799286,285.50591720093234L68.88253453166071,295.1340979217568C62.74509012532857,304.7622786425812,50.47020131266428,324.01864008423007,44.33275690633214,340.21322705505446C38.1953125,356.4078140258789,38.1953125,369.5406265258789,38.1953125,376.1070327758789L38.1953125,382.6734390258789" marker-end="url(#arrowhead45)" style="fill:none"></path><defs><marker id="arrowhead45" viewBox="0 0 10 10" refX="9" refY="5" markerUnits="strokeWidth" markerWidth="8" markerHeight="6" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowheadPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"></path></marker></defs></g><g class="edgePath LS-C LE-E" style="opacity: 1;" id="L-C-E"><path class="path" d="M112.7612704760589,285.5059162610017L118.7320483133824,295.1340971384812C124.70282615070592,304.76227801596076,136.64438182535295,324.01863977091983,142.6151596626765,340.21322689839934C148.5859375,356.4078140258789,148.5859375,369.5406265258789,148.5859375,376.1070327758789L148.5859375,382.6734390258789" marker-end="url(#arrowhead46)" style="fill:none"></path><defs><marker id="arrowhead46" viewBox="0 0 10 10" refX="9" refY="5" markerUnits="strokeWidth" markerWidth="8" markerHeight="6" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z" class="arrowheadPath" style="stroke-width: 1; stroke-dasharray: 1, 0;"></path></marker></defs></g></g><g class="edgeLabels"><g class="edgeLabel" style="opacity: 1;" transform=""><g transform="translate(0,0)" class="label"><rect rx="0" ry="0" width="0" height="0"></rect><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"><span id="L-L-A-B" class="edgeLabel L-LS-A' L-LE-B"></span></div></foreignObject></g></g><g class="edgeLabel" style="opacity: 1;" transform=""><g transform="translate(0,0)" class="label"><rect rx="0" ry="0" width="0" height="0"></rect><foreignObject width="0" height="0"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"><span id="L-L-B-C" class="edgeLabel L-LS-B' L-LE-C"></span></div></foreignObject></g></g><g class="edgeLabel" style="opacity: 1;" transform="translate(38.1953125,343.2750015258789)"><g transform="translate(-12.59375,-14.3984375)" class="label"><rect rx="0" ry="0" width="25.1875" height="28.796875"></rect><foreignObject width="25.1875" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"><span id="L-L-C-D" class="edgeLabel L-LS-C' L-LE-D">a=1</span></div></foreignObject></g></g><g class="edgeLabel" style="opacity: 1;" transform="translate(148.5859375,343.2750015258789)"><g transform="translate(-12.59375,-14.3984375)" class="label"><rect rx="0" ry="0" width="25.1875" height="28.796875"></rect><foreignObject width="25.1875" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;"><span id="L-L-C-E" class="edgeLabel L-LS-C' L-LE-E">a=2</span></div></foreignObject></g></g></g><g class="nodes"><g class="node default" style="opacity: 1;" id="flowchart-A-27" transform="translate(93.390625,32.3984375)"><rect rx="0" ry="0" x="-26" y="-24.3984375" width="52" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-16,-14.3984375)"><foreignObject width="32" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">方形</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-B-28" transform="translate(93.390625,131.1953125)"><rect rx="5" ry="5" x="-26" y="-24.3984375" width="52" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-16,-14.3984375)"><foreignObject width="32" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">圆角</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-C-30" transform="translate(93.390625,254.73515701293945)"><polygon points="49.14140625,0 98.2828125,-49.14140625 49.14140625,-98.2828125 0,-49.14140625" transform="translate(-49.14140625,49.14140625)" class="label-container"></polygon><g class="label" transform="translate(0,0)"><g transform="translate(-20.203125,-14.3984375)"><foreignObject width="40.40625" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">条件a</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-D-32" transform="translate(38.1953125,407.0718765258789)"><rect rx="0" ry="0" x="-30.1953125" y="-24.3984375" width="60.390625" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-20.1953125,-14.3984375)"><foreignObject width="40.390625" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">结果1</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-E-34" transform="translate(148.5859375,407.0718765258789)"><rect rx="0" ry="0" x="-30.1953125" y="-24.3984375" width="60.390625" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-20.1953125,-14.3984375)"><foreignObject width="40.390625" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">结果2</div></foreignObject></g></g></g><g class="node default" style="opacity: 1;" id="flowchart-F-35" transform="translate(219.390625,32.3984375)"><rect rx="0" ry="0" x="-50" y="-24.3984375" width="100" height="48.796875" class="label-container"></rect><g class="label" transform="translate(0,0)"><g transform="translate(-40,-14.3984375)"><foreignObject width="80" height="28.796875"><div xmlns="http://www.w3.org/1999/xhtml" style="display: inline-block; white-space: nowrap;">竖向流程图</div></foreignObject></g></g></g></g></g></g></svg></div><h4 id="标准流程图-flow">标准流程图 <code>flow</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <pre class="line-numbers highlighter-prismjs prismjs-lines-highlighted language-flow" highlighted="true"><code class="highlighter-prismjs language-flow">st<span class="token operator">=&gt;</span>start<span class="token operator">:</span> 开始框 op<span class="token operator">=&gt;</span>operation<span class="token operator">:</span> 处理框 cond<span class="token operator">=&gt;</span>condition<span class="token operator">:</span> <span class="token function">判断框</span><span class="token punctuation">(</span>是或否<span class="token operator">?</span><span class="token punctuation">)</span> sub1<span class="token operator">=&gt;</span>subroutine<span class="token operator">:</span> 子流程 io<span class="token operator">=&gt;</span>inputoutput<span class="token operator">:</span> 输入输出框 e<span class="token operator">=&gt;</span>end<span class="token operator">:</span> 结束框 st<span class="token operator">-</span><span class="token operator">&gt;</span>op<span class="token operator">-</span><span class="token operator">&gt;</span>cond <span class="token function">cond</span><span class="token punctuation">(</span>yes<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span>io<span class="token operator">-</span><span class="token operator">&gt;</span>e <span class="token function">cond</span><span class="token punctuation">(</span>no<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span><span class="token function">sub1</span><span class="token punctuation">(</span>right<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span>op <span aria-hidden="true" class="line-numbers-rows"><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span></span><span class="line-numbers-sizer" style="display: none;"></span></code></pre> <h4 id="标准流程图横向-flow">标准流程图(横向) <code>flow</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <pre class="line-numbers highlighter-prismjs prismjs-lines-highlighted language-flow" highlighted="true"><code class="highlighter-prismjs language-flow">st<span class="token operator">=&gt;</span>start<span class="token operator">:</span> 开始框 op<span class="token operator">=&gt;</span>operation<span class="token operator">:</span> 处理框 cond<span class="token operator">=&gt;</span>condition<span class="token operator">:</span> <span class="token function">判断框</span><span class="token punctuation">(</span>是或否<span class="token operator">?</span><span class="token punctuation">)</span> sub1<span class="token operator">=&gt;</span>subroutine<span class="token operator">:</span> 子流程 io<span class="token operator">=&gt;</span>inputoutput<span class="token operator">:</span> 输入输出框 e<span class="token operator">=&gt;</span>end<span class="token operator">:</span> 结束框 <span class="token function">st</span><span class="token punctuation">(</span>right<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span><span class="token function">op</span><span class="token punctuation">(</span>right<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span>cond <span class="token function">cond</span><span class="token punctuation">(</span>yes<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span><span class="token function">io</span><span class="token punctuation">(</span>bottom<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span>e <span class="token function">cond</span><span class="token punctuation">(</span>no<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span><span class="token function">sub1</span><span class="token punctuation">(</span>right<span class="token punctuation">)</span><span class="token operator">-</span><span class="token operator">&gt;</span>op <span aria-hidden="true" class="line-numbers-rows"><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span></span><span class="line-numbers-sizer" style="display: none;"></span></code></pre> <h4 id="uml-时序图-sequence">UML 时序图 <code>sequence</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <pre class="line-numbers highlighter-prismjs language-sequence prismjs-lines-highlighted" highlighted="true"><code class="highlighter-prismjs language-sequence">对象A-&gt;对象B: 对象B你好吗?(请求) Note right of 对象B: 对象B的描述 Note left of 对象A: 对象A的描述(提示) 对象B--&gt;对象A: 我很好(响应) 对象A-&gt;对象B: 你真的好吗? <span class="line-numbers-sizer" style="display: none;"></span><span aria-hidden="true" class="line-numbers-rows"><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span></span></code></pre> <h4 id="uml-复杂时序图-sequence">UML 复杂时序图 <code>sequence</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <pre class="line-numbers highlighter-prismjs language-sequence prismjs-lines-highlighted" highlighted="true"><code class="highlighter-prismjs language-sequence">Title: 标题:复杂使用 对象A-&gt;对象B: 对象B你好吗?(请求) Note right of 对象B: 对象B的描述 Note left of 对象A: 对象A的描述(提示) 对象B--&gt;对象A: 我很好(响应) 对象B-&gt;小三: 你好吗 小三--&gt;&gt;对象A: 对象B找我了 对象A-&gt;对象B: 你真的好吗? Note over 小三,对象B: 我们是朋友 participant C Note right of C: 没人陪我玩 <span class="line-numbers-sizer" style="display: none;"></span><span aria-hidden="true" class="line-numbers-rows"><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span></span></code></pre> <h4 id="uml-标准时序图-mermaid">UML 标准时序图 <code>mermaid</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <div class="mermaid" data-processed="true"><svg id="mermaid-1679658923546" width="100%" xmlns="http://www.w3.org/2000/svg" height="592" style="max-width: 750px;" viewBox="-50 -10 750 592"><style>#mermaid-1679658923546 {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-1679658923546 .error-icon{fill:#552222;}#mermaid-1679658923546 .error-text{fill:#552222;stroke:#552222;}#mermaid-1679658923546 .edge-thickness-normal{stroke-width:2px;}#mermaid-1679658923546 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1679658923546 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1679658923546 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1679658923546 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1679658923546 .marker{fill:#333333;stroke:#333333;}#mermaid-1679658923546 .marker.cross{stroke:#333333;}#mermaid-1679658923546 svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-1679658923546 .actor{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-1679658923546 text.actor&gt;tspan{fill:black;stroke:none;}#mermaid-1679658923546 .actor-line{stroke:grey;}#mermaid-1679658923546 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#mermaid-1679658923546 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#mermaid-1679658923546 #arrowhead path{fill:#333;stroke:#333;}#mermaid-1679658923546 .sequenceNumber{fill:white;}#mermaid-1679658923546 #sequencenumber{fill:#333;}#mermaid-1679658923546 #crosshead path{fill:#333;stroke:#333;}#mermaid-1679658923546 .messageText{fill:#333;stroke:#333;}#mermaid-1679658923546 .labelBox{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-1679658923546 .labelText,#mermaid-1679658923546 .labelText&gt;tspan{fill:black;stroke:none;}#mermaid-1679658923546 .loopText,#mermaid-1679658923546 .loopText&gt;tspan{fill:black;stroke:none;}#mermaid-1679658923546 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);}#mermaid-1679658923546 .note{stroke:#aaaa33;fill:#fff5ad;}#mermaid-1679658923546 .noteText,#mermaid-1679658923546 .noteText&gt;tspan{fill:black;stroke:none;}#mermaid-1679658923546 .activation0{fill:#f4f4f4;stroke:#666;}#mermaid-1679658923546 .activation1{fill:#f4f4f4;stroke:#666;}#mermaid-1679658923546 .activation2{fill:#f4f4f4;stroke:#666;}#mermaid-1679658923546 .actorPopupMenu{position:absolute;}#mermaid-1679658923546 .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#mermaid-1679658923546 .actor-man line{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;}#mermaid-1679658923546 .actor-man circle,#mermaid-1679658923546 line{stroke:hsl(259.6261682243, 59.7765363128%, 87.9019607843%);fill:#ECECFF;stroke-width:2px;}#mermaid-1679658923546 :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}</style><g></g><defs><symbol id="computer" width="24" height="24"><path transform="scale(.5)" d="M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z"></path></symbol></defs><defs><symbol id="database" fill-rule="evenodd" clip-rule="evenodd"><path transform="scale(.5)" d="M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z"></path></symbol></defs><defs><symbol id="clock" width="24" height="24"><path transform="scale(.5)" d="M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z"></path></symbol></defs><g><line id="actor0" x1="75" y1="5" x2="75" y2="526" class="200" stroke-width="0.5px" stroke="#999"></line><g id="root-0"><rect x="0" y="0" fill="#eaeaea" stroke="#666" width="150" height="65" rx="3" ry="3" class="actor"></rect><text x="75" y="32.5" dominant-baseline="central" alignment-baseline="central" class="actor" style="text-anchor: middle; font-size: 14px; font-weight: 400; font-family: Open-Sans, &quot;sans-serif&quot;;"><tspan x="75" dy="0">张三</tspan></text></g></g><g><line id="actor1" x1="275" y1="5" x2="275" y2="526" class="200" stroke-width="0.5px" stroke="#999"></line><g id="root-1"><rect x="200" y="0" fill="#eaeaea" stroke="#666" width="150" height="65" rx="3" ry="3" class="actor"></rect><text x="275" y="32.5" dominant-baseline="central" alignment-baseline="central" class="actor" style="text-anchor: middle; font-size: 14px; font-weight: 400; font-family: Open-Sans, &quot;sans-serif&quot;;"><tspan x="275" dy="0">李四</tspan></text></g></g><g><line id="actor2" x1="475" y1="5" x2="475" y2="526" class="200" stroke-width="0.5px" stroke="#999"></line><g id="root-2"><rect x="400" y="0" fill="#eaeaea" stroke="#666" width="150" height="65" rx="3" ry="3" class="actor"></rect><text x="475" y="32.5" dominant-baseline="central" alignment-baseline="central" class="actor" style="text-anchor: middle; font-size: 14px; font-weight: 400; font-family: Open-Sans, &quot;sans-serif&quot;;"><tspan x="475" dy="0">王五</tspan></text></g></g><defs><marker id="arrowhead" refX="9" refY="5" markerUnits="userSpaceOnUse" markerWidth="12" markerHeight="12" orient="auto"><path d="M 0 0 L 10 5 L 0 10 z"></path></marker></defs><defs><marker id="crosshead" markerWidth="15" markerHeight="8" orient="auto" refX="16" refY="4"><path fill="black" stroke="#000000" stroke-width="1px" d="M 9,2 V 6 L16,4 Z" style="stroke-dasharray: 0, 0;"></path><path fill="none" stroke="#000000" stroke-width="1px" d="M 0,1 L 6,7 M 6,1 L 0,7" style="stroke-dasharray: 0, 0;"></path></marker></defs><defs><marker id="filled-head" refX="18" refY="7" markerWidth="20" markerHeight="28" orient="auto"><path d="M 18,7 L9,13 L14,7 L9,1 Z"></path></marker></defs><defs><marker id="sequencenumber" refX="15" refY="15" markerWidth="60" markerHeight="40" orient="auto"><circle cx="15" cy="15" r="6"></circle></marker></defs><text x="275" y="80" text-anchor="middle" dominant-baseline="middle" alignment-baseline="middle" class="messageText" dy="1em" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 16px; font-weight: 400;">王五你好吗?</text><line x1="75" y1="113" x2="475" y2="113" class="messageLine0" stroke-width="2" stroke="none" style="fill: none;"></line><text x="475" y="173" text-anchor="middle" dominant-baseline="middle" alignment-baseline="middle" class="messageText" dy="1em" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 16px; font-weight: 400;">与疾病战斗</text><path d="M 475,206 C 535,196 535,236 475,226" class="messageLine0" stroke-width="2" stroke="none" style="fill: none;"></path><g><line x1="390" y1="123" x2="560" y2="123" class="loopLine"></line><line x1="560" y1="123" x2="560" y2="276" class="loopLine"></line><line x1="390" y1="276" x2="560" y2="276" class="loopLine"></line><line x1="390" y1="123" x2="390" y2="276" class="loopLine"></line><polygon points="390,123 440,123 440,136 431.6,143 390,143" class="labelBox"></polygon><text x="415" y="136" text-anchor="middle" dominant-baseline="middle" alignment-baseline="middle" class="labelText" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 16px; font-weight: 400;">loop</text><text x="500" y="141" text-anchor="middle" class="loopText" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 16px; font-weight: 400;"><tspan x="500">[健康检查]</tspan></text></g><g><rect x="500" y="286" fill="#EDF2AE" stroke="#666" width="150" height="52" rx="0" ry="0" class="note"></rect><text x="575" y="291" text-anchor="middle" dominant-baseline="middle" alignment-baseline="middle" class="noteText" dy="1em" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 14px; font-weight: 400;"><tspan x="575">合理 食物 </tspan></text><text x="575" y="307" text-anchor="middle" dominant-baseline="middle" alignment-baseline="middle" class="noteText" dy="1em" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 14px; font-weight: 400;"><tspan x="575">看医生...</tspan></text></g><text x="175" y="353" text-anchor="middle" dominant-baseline="middle" alignment-baseline="middle" class="messageText" dy="1em" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 16px; font-weight: 400;">很好!</text><line x1="275" y1="386" x2="75" y2="386" class="messageLine1" stroke-width="2" stroke="none" marker-end="url(#arrowhead)" style="stroke-dasharray: 3, 3; fill: none;"></line><text x="375" y="401" text-anchor="middle" dominant-baseline="middle" alignment-baseline="middle" class="messageText" dy="1em" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 16px; font-weight: 400;">你怎么样?</text><line x1="475" y1="438" x2="275" y2="438" class="messageLine0" stroke-width="2" stroke="none" style="fill: none;"></line><text x="375" y="453" text-anchor="middle" dominant-baseline="middle" alignment-baseline="middle" class="messageText" dy="1em" style="font-family: &quot;trebuchet ms&quot;, verdana, arial, sans-serif; font-size: 16px; font-weight: 400;">很好!</text><line x1="275" y1="486" x2="475" y2="486" class="messageLine1" stroke-width="2" stroke="none" style="stroke-dasharray: 3, 3; fill: none;"></line><g><rect x="0" y="506" fill="#eaeaea" stroke="#666" width="150" height="65" rx="3" ry="3" class="actor"></rect><text x="75" y="538.5" dominant-baseline="central" alignment-baseline="central" class="actor" style="text-anchor: middle; font-size: 14px; font-weight: 400; font-family: Open-Sans, &quot;sans-serif&quot;;"><tspan x="75" dy="0">张三</tspan></text></g><g><rect x="200" y="506" fill="#eaeaea" stroke="#666" width="150" height="65" rx="3" ry="3" class="actor"></rect><text x="275" y="538.5" dominant-baseline="central" alignment-baseline="central" class="actor" style="text-anchor: middle; font-size: 14px; font-weight: 400; font-family: Open-Sans, &quot;sans-serif&quot;;"><tspan x="275" dy="0">李四</tspan></text></g><g><rect x="400" y="506" fill="#eaeaea" stroke="#666" width="150" height="65" rx="3" ry="3" class="actor"></rect><text x="475" y="538.5" dominant-baseline="central" alignment-baseline="central" class="actor" style="text-anchor: middle; font-size: 14px; font-weight: 400; font-family: Open-Sans, &quot;sans-serif&quot;;"><tspan x="475" dy="0">王五</tspan></text></g></svg></div><h4 id="甘特图-mermaid">甘特图 <code>mermaid</code><button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h4> <div class="mermaid" data-processed="true"><svg id="mermaid-1679658923584" width="100%" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 818 388" height="388" style="max-width: 818px;"><style>#mermaid-1679658923584 {font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;fill:#333;}#mermaid-1679658923584 .error-icon{fill:#552222;}#mermaid-1679658923584 .error-text{fill:#552222;stroke:#552222;}#mermaid-1679658923584 .edge-thickness-normal{stroke-width:2px;}#mermaid-1679658923584 .edge-thickness-thick{stroke-width:3.5px;}#mermaid-1679658923584 .edge-pattern-solid{stroke-dasharray:0;}#mermaid-1679658923584 .edge-pattern-dashed{stroke-dasharray:3;}#mermaid-1679658923584 .edge-pattern-dotted{stroke-dasharray:2;}#mermaid-1679658923584 .marker{fill:#333333;stroke:#333333;}#mermaid-1679658923584 .marker.cross{stroke:#333333;}#mermaid-1679658923584 svg{font-family:"trebuchet ms",verdana,arial,sans-serif;font-size:16px;}#mermaid-1679658923584 .mermaid-main-font{font-family:"trebuchet ms",verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-1679658923584 .exclude-range{fill:#eeeeee;}#mermaid-1679658923584 .section{stroke:none;opacity:0.2;}#mermaid-1679658923584 .section0{fill:rgba(102, 102, 255, 0.49);}#mermaid-1679658923584 .section2{fill:#fff400;}#mermaid-1679658923584 .section1,#mermaid-1679658923584 .section3{fill:white;opacity:0.2;}#mermaid-1679658923584 .sectionTitle0{fill:#333;}#mermaid-1679658923584 .sectionTitle1{fill:#333;}#mermaid-1679658923584 .sectionTitle2{fill:#333;}#mermaid-1679658923584 .sectionTitle3{fill:#333;}#mermaid-1679658923584 .sectionTitle{text-anchor:start;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-1679658923584 .grid .tick{stroke:lightgrey;opacity:0.8;shape-rendering:crispEdges;}#mermaid-1679658923584 .grid .tick text{font-family:"trebuchet ms",verdana,arial,sans-serif;fill:#333;}#mermaid-1679658923584 .grid path{stroke-width:0;}#mermaid-1679658923584 .today{fill:none;stroke:red;stroke-width:2px;}#mermaid-1679658923584 .task{stroke-width:2;}#mermaid-1679658923584 .taskText{text-anchor:middle;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-1679658923584 .taskTextOutsideRight{fill:black;text-anchor:start;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-1679658923584 .taskTextOutsideLeft{fill:black;text-anchor:end;}#mermaid-1679658923584 .task.clickable{cursor:pointer;}#mermaid-1679658923584 .taskText.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-1679658923584 .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-1679658923584 .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163!important;font-weight:bold;}#mermaid-1679658923584 .taskText0,#mermaid-1679658923584 .taskText1,#mermaid-1679658923584 .taskText2,#mermaid-1679658923584 .taskText3{fill:white;}#mermaid-1679658923584 .task0,#mermaid-1679658923584 .task1,#mermaid-1679658923584 .task2,#mermaid-1679658923584 .task3{fill:#8a90dd;stroke:#534fbc;}#mermaid-1679658923584 .taskTextOutside0,#mermaid-1679658923584 .taskTextOutside2{fill:black;}#mermaid-1679658923584 .taskTextOutside1,#mermaid-1679658923584 .taskTextOutside3{fill:black;}#mermaid-1679658923584 .active0,#mermaid-1679658923584 .active1,#mermaid-1679658923584 .active2,#mermaid-1679658923584 .active3{fill:#bfc7ff;stroke:#534fbc;}#mermaid-1679658923584 .activeText0,#mermaid-1679658923584 .activeText1,#mermaid-1679658923584 .activeText2,#mermaid-1679658923584 .activeText3{fill:black!important;}#mermaid-1679658923584 .done0,#mermaid-1679658923584 .done1,#mermaid-1679658923584 .done2,#mermaid-1679658923584 .done3{stroke:grey;fill:lightgrey;stroke-width:2;}#mermaid-1679658923584 .doneText0,#mermaid-1679658923584 .doneText1,#mermaid-1679658923584 .doneText2,#mermaid-1679658923584 .doneText3{fill:black!important;}#mermaid-1679658923584 .crit0,#mermaid-1679658923584 .crit1,#mermaid-1679658923584 .crit2,#mermaid-1679658923584 .crit3{stroke:#ff8888;fill:red;stroke-width:2;}#mermaid-1679658923584 .activeCrit0,#mermaid-1679658923584 .activeCrit1,#mermaid-1679658923584 .activeCrit2,#mermaid-1679658923584 .activeCrit3{stroke:#ff8888;fill:#bfc7ff;stroke-width:2;}#mermaid-1679658923584 .doneCrit0,#mermaid-1679658923584 .doneCrit1,#mermaid-1679658923584 .doneCrit2,#mermaid-1679658923584 .doneCrit3{stroke:#ff8888;fill:lightgrey;stroke-width:2;cursor:pointer;shape-rendering:crispEdges;}#mermaid-1679658923584 .milestone{transform:rotate(45deg) scale(0.8,0.8);}#mermaid-1679658923584 .milestoneText{font-style:italic;}#mermaid-1679658923584 .doneCritText0,#mermaid-1679658923584 .doneCritText1,#mermaid-1679658923584 .doneCritText2,#mermaid-1679658923584 .doneCritText3{fill:black!important;}#mermaid-1679658923584 .activeCritText0,#mermaid-1679658923584 .activeCritText1,#mermaid-1679658923584 .activeCritText2,#mermaid-1679658923584 .activeCritText3{fill:black!important;}#mermaid-1679658923584 .titleText{text-anchor:middle;font-size:18px;fill:#333;font-family:'trebuchet ms',verdana,arial,sans-serif;font-family:var(--mermaid-font-family);}#mermaid-1679658923584 :root{--mermaid-font-family:"trebuchet ms",verdana,arial,sans-serif;}</style><g></g><g></g><g class="grid" transform="translate(75, 338)" fill="none" font-size="10" font-family="sans-serif" text-anchor="middle"><path class="domain" stroke="currentColor" d="M0,-303V0H668V-303"></path><g class="tick" opacity="1" transform="translate(37,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-07</text></g><g class="tick" opacity="1" transform="translate(111,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-09</text></g><g class="tick" opacity="1" transform="translate(186,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-11</text></g><g class="tick" opacity="1" transform="translate(260,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-13</text></g><g class="tick" opacity="1" transform="translate(334,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-15</text></g><g class="tick" opacity="1" transform="translate(408,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-17</text></g><g class="tick" opacity="1" transform="translate(482,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-19</text></g><g class="tick" opacity="1" transform="translate(557,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-21</text></g><g class="tick" opacity="1" transform="translate(631,0)"><line stroke="currentColor" y2="-303"></line><text fill="#000" y="3" dy="1em" stroke="none" font-size="10" style="text-anchor: middle;">2014-01-23</text></g></g><g><rect x="0" y="48" width="780.5" height="24" class="section section0"></rect><rect x="0" y="144" width="780.5" height="24" class="section section1"></rect><rect x="0" y="72" width="780.5" height="24" class="section section0"></rect><rect x="0" y="96" width="780.5" height="24" class="section section0"></rect><rect x="0" y="168" width="780.5" height="24" class="section section1"></rect><rect x="0" y="192" width="780.5" height="24" class="section section1"></rect><rect x="0" y="120" width="780.5" height="24" class="section section0"></rect><rect x="0" y="216" width="780.5" height="24" class="section section1"></rect><rect x="0" y="264" width="780.5" height="24" class="section section2"></rect><rect x="0" y="288" width="780.5" height="24" class="section section2"></rect><rect x="0" y="312" width="780.5" height="24" class="section section2"></rect><rect x="0" y="240" width="780.5" height="24" class="section section1"></rect></g><g><rect id="des1" rx="3" ry="3" x="75" y="50" width="74" height="20" transform-origin="112px 60px" class="task done0 "></rect><rect id="task1" rx="3" ry="3" x="75" y="146" width="37" height="20" transform-origin="93.5px 156px" class="task doneCrit1 "></rect><rect id="des2" rx="3" ry="3" x="186" y="74" width="112" height="20" transform-origin="242px 84px" class="task active0 "></rect><rect id="des3" rx="3" ry="3" x="298" y="98" width="185" height="20" transform-origin="390.5px 108px" class="task task0 "></rect><rect id="task2" rx="3" ry="3" x="298" y="170" width="74" height="20" transform-origin="335px 180px" class="task doneCrit1 "></rect><rect id="task3" rx="3" ry="3" x="372" y="194" width="111" height="20" transform-origin="427.5px 204px" class="task activeCrit1 "></rect><rect id="des4" rx="3" ry="3" x="483" y="122" width="186" height="20" transform-origin="576px 132px" class="task task0 "></rect><rect id="task4" rx="3" ry="3" x="483" y="218" width="186" height="20" transform-origin="576px 228px" class="task crit1 "></rect><rect id="a1" rx="3" ry="3" x="483" y="266" width="112" height="20" transform-origin="539px 276px" class="task active2 "></rect><rect id="task6" rx="3" ry="3" x="595" y="290" width="30" height="20" transform-origin="610px 300px" class="task task2 "></rect><rect id="task7" rx="3" ry="3" x="625" y="314" width="75" height="20" transform-origin="662.5px 324px" class="task task2 "></rect><rect id="task5" rx="3" ry="3" x="669" y="242" width="74" height="20" transform-origin="706px 252px" class="task task1 "></rect><text id="des1-text" font-size="11" x="112" y="63.5" text-height="20" class=" taskText taskText0 doneText0 width-22">需求 </text><text id="task1-text" font-size="11" x="117" y="159.5" text-height="20" class=" taskTextOutsideRight taskTextOutside1 doneCritText1 width-88">学习准备理解需求 </text><text id="des2-text" font-size="11" x="242" y="87.5" text-height="20" class=" taskText taskText0 activeText0 width-22.5">原型 </text><text id="des3-text" font-size="11" x="390.5" y="111.5" text-height="20" class=" taskText taskText0 width-32.1953125">UI设计 </text><text id="task2-text" font-size="11" x="335" y="183.5" text-height="20" class=" taskText taskText1 doneCritText1 width-44">设计框架 </text><text id="task3-text" font-size="11" x="427.5" y="207.5" text-height="20" class=" taskText taskText1 activeCritText1 critText1 width-22">开发 </text><text id="des4-text" font-size="11" x="576" y="135.5" text-height="20" class=" taskText taskText0 width-44.5">未来任务 </text><text id="task4-text" font-size="11" x="576" y="231.5" text-height="20" class=" taskText taskText1 critText1 width-44.5">未来任务 </text><text id="a1-text" font-size="11" x="539" y="279.5" text-height="20" class=" taskText taskText2 activeText2 width-44">功能测试 </text><text id="task6-text" font-size="11" x="630" y="303.5" text-height="20" class=" taskTextOutsideRight taskTextOutside2 width-44">压力测试 </text><text id="task7-text" font-size="11" x="662.5" y="327.5" text-height="20" class=" taskText taskText2 width-44.5">测试报告 </text><text id="task5-text" font-size="11" x="706" y="255.5" text-height="20" class=" taskText taskText1 width-11">耍 </text></g><g><text dy="0em" x="10" y="98" font-size="11" class="sectionTitle sectionTitle0"><tspan alignment-baseline="central" x="10">设计</tspan></text><text dy="0em" x="10" y="206" font-size="11" class="sectionTitle sectionTitle1"><tspan alignment-baseline="central" x="10">开发</tspan></text><text dy="0em" x="10" y="302" font-size="11" class="sectionTitle sectionTitle2"><tspan alignment-baseline="central" x="10">测试</tspan></text></g><g class="today"><line x1="124948" x2="124948" y1="25" y2="363" class="today"></line></g><text x="409" y="25" class="titleText">软件开发甘特图</text></svg></div><h2 id="blogTitle30">Markdown 语法测试<button class="cnblogs-toc-button" title="显示目录导航" aria-expanded="false"></button></h2> <pre class="line-numbers highlighter-prismjs language-none prismjs-lines-highlighted" highlighted="true"><code class="highlighter-prismjs language-none"> ## Markdown 目录 - 在文中放置`[toc]` ## Markdown 标题 - 在标题前放置 1~6 个`#`号 # 一级标题 ## 二级标题 ### 三级标题 #### 四级标题 ##### 五级标题 ###### 六级标题 --- ## Markdown 段落格式 ### 常用通用部分 - 用 1~3 个`*`包裹文本分别实现斜体、粗体、粗斜体,不推荐使用 `_` 。 - 这是`*`包裹的*斜体*文本,这是`_`包裹的_斜体_文本 - 这是`**`包裹的**粗体**文本,这是`__`包裹的__粗体__文本 - 这是`***`包裹的***粗斜体***文本,这是`___`包裹的___粗斜体___文本 ### 非常用通用部分 - 下标:使用`~`包裹文本,如 H~2~O - 上标:使用`^`包裹文本,如 X^2^ - 高亮:使用`==`包裹文本,如==highlight== - 删除线:使用`~~`包裹文本,如~~删除线~~ - 下划线:使用`&lt;u&gt;`包裹文本,如&lt;u&gt;带下划线文本&lt;/u&gt; - 脚注: ``` 脚注[^脚注文本] [^脚注文本]: 脚注的内容 ``` 脚注[^脚注文本] [^脚注文本]: 脚注的内容 - 分隔线:3 个及以上连续的`-` --- ## Markdown 列表 ### 无序列表 在`-`后面带一个空格,不推荐使用 `+` 和 `*`。 - 无序列表 `-` - 无序列表 `-` - 无序列表 `-` - 无序列表 `*` + 无序列表 `+` ### 有序列表 在阿拉伯数字后面带一个`.`和一个空格 1. 有序列表`1.` 2. 有序列表`2.` ### 列表嵌套 - 在无序列表中嵌套对象,需要在对象的行首放置 2 个空格。 - 在有序列表中嵌套对象,需要在对象的行首放置 3 个空格。 - 列表嵌套 `-` 1. 列表嵌套 `-1.` - 列表嵌套 `--` 1. 列表嵌套 `1.` 1. 列表嵌套 `1.1.` - 列表嵌套 `1.-` ### 任务列表 在 `+` 后面带一个空格,在空格后再带一个 `[ ]` , `[ ]` 的后面再带一个空格, `[ ]` 里面为一个空格时表示任务未完成, `[ ]` 里面为一个 `x` 时表示任务已完成。不推荐使用 `-` 和 `*`。 + [x] 已完成任务 `+ [x]` + [ ] 待完成任务 `+ [ ]` + [ ] 待完成任务 `__+ [ ]` - [x] 已完成任务 `- [x]` * [x] 已完成任务 `* [x]` ## Markdown 表格 - 用 `|` 分隔单元格,用 `-` 分隔表头和其他行,用 `:` 控制对齐方式 ```markdown | 表头 | 左对齐 | 右对齐 | 居中对齐 | | ------ | :----- | -----: | :------: | | 单元格 | 单元格 | 单元格 | 单元格 | | 单元格 | 单元格 | 单元格 | 单元格 | ``` | 表头 | 左对齐 | 右对齐 | 居中对齐 | | ------ | :----- | -----: | :------: | | 单元格 | 单元格 | 单元格 | 单元格 | | 单元格 | 单元格 | 单元格 | 单元格 | ## Markdown 区块 ### 区块引用 - 在行首放置 1 个 `&gt;` &gt; 区块引用 ### 区块引用嵌套 在行首放置多个 `&gt;` ,段落和列表的下一行放置 `&gt;` 时会自动对区块引用进行嵌套 &gt; 最外层 &gt; &gt; 第一层嵌套 &gt; &gt; &gt; 第二层嵌套 ## Markdown 代码 ### 行内代码 - 用 &lt;code&gt;`&lt;/code&gt; 包裹行内代码 ### 代码区块 - 推荐使用&lt;code&gt;```&lt;/code&gt;包裹代码块并声明所用语言,不推荐在代码块的行首放置 4 个空格或 1 个制表符 #### 行首放置空格 在代码块的行首放置 4 个空格,段落和代码区块之间至少空一行。 h1 { font-size: 24px; text-align: left; background-repeat: no-repeat; background-position:center left; } #### 包裹代码块:段落 段落和代码区块之间可以有空行 ```CSS h1 { font-size: 24px; text-align: left; background-repeat: no-repeat; background-position:center left; } ``` ## Markdown 链接 ### 普通链接 ```markdown &lt;链接地址&gt; [链接名称](链接地址) [链接名称](链接地址 "可选标题") &lt;https://markdown-here.com&gt; [Markdown Here](https://markdown-here.com) [Markdown Here](https://markdown-here.com "Markdown Here 标题") ``` &lt;https://markdown-here.com&gt; [Markdown Here](https://markdown-here.com) [Markdown Here](https://markdown-here.com "Markdown Here 标题") ### 锚点链接(在文档的结尾为变量赋值) ```markdown [链接名称][网址变量] [网址变量]:链接地址 [Markdown Here][markdown_here_url] [Markdown_Here_url]:https://markdown-here.com ``` [Markdown Here][markdown_here_url] [Markdown_Here_url]:https://markdown-here.com ## Markdown 图片 ### 一般图片链接 ```markdown ![alt 属性文本](图片地址) ![alt 属性文本](图片地址 '可选标题') ![alt 属性文本](图片地址 "可选标题") ![梦幻之心星](https://img.skyseeker.eu.org/icon/dream-seeker.jpg) ![梦幻之心星](https://img.skyseeker.eu.org/icon/dream-seeker.jpg '梦幻之心星')) ![梦幻之心星](https://img.skyseeker.eu.org/icon/dream-seeker.jpg "梦幻之心星") ``` ![梦幻之心星](https://img.skyseeker.eu.org/icon/dream-seeker.jpg) ![梦幻之心星](https://img.skyseeker.eu.org/icon/dream-seeker.jpg '梦幻之心星') ![梦幻之心星](https://img.skyseeker.eu.org/icon/dream-seeker.jpg "梦幻之心星") ### 高级链接 - 在文档的结尾为变量赋值 ```markdown ![alt 属性文本][图片地址变量] [图片地址变量]: 图片地址 ![梦幻之心星][Sky-seeker_url] [Sky-seeker_url]: https://img.skyseeker.eu.org/icon/dream-seeker.jpg &lt;img src="https://markdown-here.com/img/icon256.png" width="50%"&gt; ``` ![梦幻之心星][Sky-seeker_url] [Sky-seeker_url]: &lt;https://img.skyseeker.eu.org/icon/dream-seeker.jpg&gt; &lt;img src="https://img.skyseeker.eu.org/icon/dream-seeker.jpg" width="10%"&gt; ## Markdown 高级技巧 ### 支持的 HTML 元素 - 不在 Markdown 涵盖范围内的标签,都能直接使用。目前支持的 HTML 元素有:`&lt;kbd&gt; &lt;b&gt; &lt;i&gt; &lt;em&gt; &lt;sup&gt; &lt;sub&gt; &lt;br&gt;`等。 ``` 1. 使用 &lt;kbd&gt;Ctrl&lt;/kbd&gt;+&lt;kbd&gt;Alt&lt;/kbd&gt;+&lt;kbd&gt;Del&lt;/kbd&gt; 重启电脑 2. 特殊符号 &amp;copy; &amp;trade; &amp;amp; 18&amp;ordm;C 3. &lt;span style="color: red;"&gt;这是一行红色的文字&lt;/span&gt; 4. 插入视频 &lt;video src="$appres/images/example.mp4"&gt;&lt;/video&gt; 5. Emoji 表情 :smiley: ``` 1. 使用 &lt;kbd&gt;Ctrl&lt;/kbd&gt;+&lt;kbd&gt;Alt&lt;/kbd&gt;+&lt;kbd&gt;Del&lt;/kbd&gt; 重启电脑 2. 特殊符号 &amp;copy; &amp;trade; &amp;amp; 18&amp;ordm;C 3. &lt;span style="color: red;"&gt;这是一行红色的文字&lt;/span&gt; 4. 插入视频&lt;video src="$appres/images/example.mp4"&gt;&lt;/video&gt; 5. Emoji 表情 :smiley: ### 转义 - Markdown 使用了很多特殊符号来表示特定的意义,如果需要显示特定的符号则需要使用转义字符,Markdown 使用反斜杠转义特殊字符。 ### 数学公式 - 使用美元符 `$` 包裹 TeX 或 LaTeX 格式的数学公式 1. 行内公式 `$E=mc^2$`,如 $E=mc^2$ 2. 块公式 ```LaTeX \]

\sum_{i=1}^n a_i=0

\[ \]

\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \
\end{vmatrix}

\[``` \]

\sum_{i=1}^n a_i=0

\[ \]

\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \
\end{vmatrix}

\[ ### 画图 #### 饼图 `mermaid pie` ```mermaid pie title 饼图 "Joplin" : 42.96 "Qdown" : 50.05 " 黑科技" : 10.01 "其它" : 5 ``` #### 横向流程图 `mermaid graph LR` ```mermaid graph LR A[方形] --&gt;B(圆角) B --&gt; C{条件a} C --&gt;|a=1| D[结果1] C --&gt;|a=2| E[结果2] F[横向流程图] ``` #### 竖向流程图 `mermaid graph TD` ```mermaid graph TD A[方形] --&gt; B(圆角) B --&gt; C{条件a} C --&gt; |a=1| D[结果1] C --&gt; |a=2| E[结果2] F[竖向流程图] ``` #### 标准流程图 `flow` ```flow st=&gt;start: 开始框 op=&gt;operation: 处理框 cond=&gt;condition: 判断框(是或否?) sub1=&gt;subroutine: 子流程 io=&gt;inputoutput: 输入输出框 e=&gt;end: 结束框 st-&gt;op-&gt;cond cond(yes)-&gt;io-&gt;e cond(no)-&gt;sub1(right)-&gt;op ``` #### 标准流程图(横向) `flow` ```flow st=&gt;start: 开始框 op=&gt;operation: 处理框 cond=&gt;condition: 判断框(是或否?) sub1=&gt;subroutine: 子流程 io=&gt;inputoutput: 输入输出框 e=&gt;end: 结束框 st(right)-&gt;op(right)-&gt;cond cond(yes)-&gt;io(bottom)-&gt;e cond(no)-&gt;sub1(right)-&gt;op ``` #### UML 时序图 `sequence` ```sequence 对象A-&gt;对象B: 对象B你好吗?(请求) Note right of 对象B: 对象B的描述 Note left of 对象A: 对象A的描述(提示) 对象B--&gt;对象A: 我很好(响应) 对象A-&gt;对象B: 你真的好吗? ``` #### UML 复杂时序图 `sequence` ```sequence Title: 标题:复杂使用 对象A-&gt;对象B: 对象B你好吗?(请求) Note right of 对象B: 对象B的描述 Note left of 对象A: 对象A的描述(提示) 对象B--&gt;对象A: 我很好(响应) 对象B-&gt;小三: 你好吗 小三--&gt;&gt;对象A: 对象B找我了 对象A-&gt;对象B: 你真的好吗? Note over 小三,对象B: 我们是朋友 participant C Note right of C: 没人陪我玩 ``` #### UML 标准时序图 `mermaid` ```mermaid %% 时序图例子,-&gt; 直线,--&gt;虚线,-&gt;&gt;实线箭头 sequenceDiagram participant 张三 participant 李四 张三-&gt;王五: 王五你好吗? loop 健康检查 王五-&gt;王五: 与疾病战斗 end Note right of 王五: 合理 食物 &lt;br/&gt;看医生... 李四--&gt;&gt;张三: 很好! 王五-&gt;李四: 你怎么样? 李四--&gt;王五: 很好! ``` #### 甘特图 `mermaid` ```mermaid gantt dateFormat YYYY-MM-DD title 软件开发甘特图 section 设计 需求 :done, des1, 2014-01-06,2014-01-08 原型 :active, des2, 2014-01-09, 3d UI设计 : des3, after des2, 5d 未来任务 : des4, after des3, 5d section 开发 学习准备理解需求 :crit, done, 2014-01-06,24h 设计框架 :crit, done, after des2, 2d 开发 :crit, active, 3d 未来任务 :crit, 5d 耍 :2d section 测试 功能测试 :active, a1, after des3, 3d 压力测试 :after a1 , 20h 测试报告 : 48h ``` <span class="line-numbers-sizer" style="display: none;"></span><span aria-hidden="true" class="line-numbers-rows"><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 37.7969px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 37.7969px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 37.7969px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 37.7969px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span><span style="height: 18.8984px;"></span></span></code></pre> <hr> <p>版权声明:本文为「<a href="https://www.cnblogs.com/Sky-seeker" target="_blank" rel="noopener">梦幻之心星</a>」原创,依据 <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank" rel="noopener">CC BY-NC-SA 4.0</a> 许可证进行授权,转载请附上原文出处链接及本声明。</p> <hr> <p>博客园地址:<a href="https://www.cnblogs.com/Sky-seeker" target="_blank" rel="noopener">https://www.cnblogs.com/Sky-seeker</a></p> <p>微信公众号:关注微信公众号,获取即时推送<br> <img src="https://img.skyseeker.eu.org/icon/Sky-seeker_WX_300x109.jpg" alt="微信名:梦幻之心星 微信号:Sky-seeker" title="微信名:梦幻之心星 微信号:Sky-seeker" loading="lazy"></p> <hr> <hr class="footnotes-sep"> <section class="footnotes"> <ol class="footnotes-list"> <li id="fn1" class="footnote-item"><p>脚注的内容 <a href="#fnref1" class="footnote-backref" rel="noopener">↩︎</a></p> </li> </ol> </section> </div> <div class="clear"></div> <div id="blog_post_info_block" role="contentinfo"> <div id="EntryTag"> 标签: <a href="https://www.cnblogs.com/Sky-seeker/tag/Markdown_Nice/">Markdown_Nice</a>, <a href="https://www.cnblogs.com/Sky-seeker/tag/CSS/">CSS</a>, <a href="https://www.cnblogs.com/Sky-seeker/tag/Typora%5D/">Typora]</a>, <a href="https://www.cnblogs.com/Sky-seeker/tag/Markdown/">Markdown</a></div> <div id="blog_post_info"> <div id="green_channel"> <a href="javascript:void(0);" id="green_channel_digg" onclick="DiggIt(13038909,cb_blogId,1);green_channel_success(this,'谢谢推荐!');">好文要顶</a> <a id="green_channel_follow" href="javascript:void(0);">已关注</a> <a id="green_channel_favorite" onclick="AddToWz(cb_entryId);return false;" href="javascript:void(0);">收藏该文</a> <a id="green_channel_weibo" href="javascript:void(0);" title="分享至新浪微博" onclick="ShareToTsina()"><img src="https://common.cnblogs.com/images/icon_weibo_24.png" alt=""></a> <a id="green_channel_wechat" href="javascript:void(0);" title="分享至微信" onclick="shareOnWechat()"><img src="https://common.cnblogs.com/images/wechat.png" alt=""></a> </div> <div id="author_profile"> <div id="author_profile_info" class="author_profile_info"> <a href="https://home.cnblogs.com/u/Sky-seeker/" target="_blank"><img src="https://pic.cnblogs.com/face/1475528/20180828120354.png" class="author_avatar" alt=""></a> <div id="author_profile_detail" class="author_profile_info"> <a href="https://home.cnblogs.com/u/Sky-seeker/">梦幻之心星</a><br> <a href="https://home.cnblogs.com/u/Sky-seeker/followers/">粉丝 - <span class="follower-count">5</span></a> <a href="https://home.cnblogs.com/u/Sky-seeker/followees/">关注 - <span class="following-count">0</span></a><br> </div> </div> <div class="clear"></div> <div id="author_profile_honor"></div> <div id="author_profile_follow" class="follow-tip"> 我在关注他 <a href="javascript:void(0);" onclick="unfollow('78baa328-9dea-49a0-c9d4-08d60c6eae85');return false;">取消关注</a> </div> </div> <div id="div_digg"><div style="padding-bottom: 5px"><span class="icon_favorite" style="padding-top: 2px"></span><a onclick="cnblogs.UserManager.FollowBlogger('9a35f2c7-18ab-e111-aa3f-842b2b196315');" href="javascript:void(0);" style="font-weight: bold; padding-left:5px;">关注一下楼主吧</a> </div> <div class="diggit" onclick="votePost(13038909,'Digg')"> <span class="diggnum" id="digg_count">0</span> </div> <div class="buryit" onclick="votePost(13038909,'Bury')"> <span class="burynum" id="bury_count">0</span> </div> <div class="clear"></div> <div class="diggword" id="digg_tips"> </div> </div> <script type="text/javascript"> currentDiggType = 0; </script></div> <div class="clear"></div> <div id="post_next_prev"> <a href="https://www.cnblogs.com/Sky-seeker/p/12994343.html" class="p_n_p_prefix">« </a> 上一篇: <a href="https://www.cnblogs.com/Sky-seeker/p/12994343.html" data-featured-image="" title="发布于 2020-05-30 18:59">百度网盘导入未完成的下载任务</a> <br> <a href="https://www.cnblogs.com/Sky-seeker/p/13047271.html" class="p_n_p_prefix">» </a> 下一篇: <a href="https://www.cnblogs.com/Sky-seeker/p/13047271.html" data-featured-image="" title="发布于 2020-06-04 23:41">Markdown编辑器的样式与文档发布</a> </div> </div> </div>\]