MarkDown 基础语法半天速成篇

名词解释: MD-MarkDown是一种非常轻量级的标记语言,它允许人们使用易读易写的纯文本格式编写文档, 编写后的文本可以导出为html,word,图像,pdf,epub等多种格式的文档。

一、MarkDown标题

1.使用‘=’和‘-’来标记一级标题和二级标题

输入两个及以上的‘=’和‘-’来标记一级和二级标题

样例:

一级标题
======
二级标题
------

2.通过使用‘#’的个数来标记标题,最多六级

# 一级
## 二级
### 三级
#### 四级
##### 五级
###### 六级

二、MarkDown段落

1.回车

在任意的文字的最后加上两个及以上的空格,表示回车

2.段落换行

在段落后面加上两个及以上的空格,在加上回车

3.字体

使用‘*’或者‘_’来设置字体格式

样例:

*斜体文本*
_斜体文本_
**粗体文本**
__粗体文本__
***粗斜体***
___粗斜体___

4.分隔线

可以在一行中用三个以上的星号,减号,底线建立一个分隔线

***
内容
* * *
内容
******
内容
- - -

5.删除线

使用‘~’

~~删除文本~~

6.下划线

使用html的标签

<u>内容</u>

7.脚注

对文本的一种补充说明内容
格式:
文本1

文本2

三、Markdown列表

markdown支持两种列表:有序和无序

1.有序列表

直接加数字序号

  1. 第一项
  2. 第二项
  3. 第三项

2.无序列表

通过星号,加号,减号加一个空格,实现无序列表

  • 第一项
  • 第二项
  • 第三项

在有序中嵌套一个无序列表

当相互嵌套时,需要在内容前加空格

  1. 有序标题1

    • 无序1
    • 无序2
  2. 有序标题2

四、markdown区块

在段落前,使用>符号,然后紧跟一个空格符号

1.区块中使用列表

区块
区块
区块
第一层

第二层

第三层

  1. 有序列表
  • 无序列表
  • 无序列表
  • 无序列表
  • 无序
  • 无序列表
  1. 有序列表

2.列表中使用块

1.  第一项
> 区块
2.  第二项

五、MarkDown代码

如果段落上需要对一个或一段内容进行代码处理,则需要用以下的
对代码块进行处理用一对三个反引号“`”,注意输入法是英文模式,示例如下:

public class GuessNum {public static void main(String[] args) {System.out.print("Welcome to the GuessNum Game(The range is between 1 and 120), please input one Integter: ");Scanner scan = new Scanner(System.in);int guessInt = (int)(Math.random()*100+1);int i = 10;while(i>0){System.out.println("你还有"+i+"次机会!");int integer = scan.nextInt();if(guessInt > integer){System.out.println("输入的数字小了哟!");}else if(guessInt < integer){System.out.println("输入的数字大了哟!");}else{System.out.println("恭喜你,猜对了");break;}i--;}scan.close();}
}

六、链接

链接地址格式:中括号内加连接名称,小括号内加链接地址,或者是<链接地址>
[链接文本](链接url)
例:Github官网

1.高级链接

文档末尾加上链接地址(url)

我是[Github官网][url1]
//中间内容可以任意,链接地址可以放在文末
[url1]:https://github.com/

七、图片

格式:![任意文本,可不写](图片路径)

八、表格

格式如下:

|表头|表头|表头|
|----|----|----|
|单元格|单元格|单元格|
|单元格|单元格|单元格|
|单元格|单元格|单元格|
|单元格|单元格|单元格|

效果:

表头 表头 表头
单元格 单元格 单元格
单元格 单元格 单元格
单元格 单元格 单元格
单元格 单元格 单元格
|:----| 左对齐
|----:| 右对齐
|:----:| 两端对齐
|----| 默认对齐|表头|表头|表头|表头|
|:----|----:|:----:|----|
|左对齐|右对齐|两端对齐两端对齐|默认对齐|
|左对齐|右对齐右对齐|两端对齐|默认对齐|
|左对齐|右对齐右对齐右对齐|两端对齐|
|左对齐|右对齐右对齐|两端对齐|默认对齐|

效果:

表头 表头 表头 表头
左对齐 右对齐 两端对齐两端对齐 默认对齐
左对齐 右对齐右对齐 两端对齐 默认对齐
左对齐 右对齐右对齐右对齐 两端对齐
左对齐 右对齐右对齐 两端对齐 默认对齐

1.表格中可以使用列表,链接和图片

|表头|表头|表头|
|----|:----|----|
|![百度图片](https://t7.baidu.com/it/u=1595072465,3644073269&fm=193&f=GIF)|<https://www.baidu.com>|1. 列表|
表头 表头 表头
https://www.baidu.com 1. 列表

九、简单高级运用

公式?流程图?结合HTML?导出Html,pdf

1.html代码

可直接在markdown中以html标签来标记你需要标记的内容,
例如```<a>空链接</a>```

空链接

2.公式

(1)行内

一对美元符号,中间加内容

$\sum$

效果:
∑\sum∑

(2)行间

两对美元符号,中间加内容

$$内容$$

效果:
内容内容内容

在以下代码加上3对反引号,注意反引号的位置,可简单的画流程图

```mermaid
graph LR  A[开始]  A --> B(圆角)  B --> C{条件1}  C --> |a==1| D[结果一]  C --> |a==2| E[结果二]  D --> |处理操作1|F(结束)  E --> |处理操作2|F(结束)

效果:

#mermaid-svg-LLZJMRIR5oKiPFW3 .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .label text{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .node rect,#mermaid-svg-LLZJMRIR5oKiPFW3 .node circle,#mermaid-svg-LLZJMRIR5oKiPFW3 .node ellipse,#mermaid-svg-LLZJMRIR5oKiPFW3 .node polygon,#mermaid-svg-LLZJMRIR5oKiPFW3 .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-LLZJMRIR5oKiPFW3 .node .label{text-align:center;fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .node.clickable{cursor:pointer}#mermaid-svg-LLZJMRIR5oKiPFW3 .arrowheadPath{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-LLZJMRIR5oKiPFW3 .flowchart-link{stroke:#333;fill:none}#mermaid-svg-LLZJMRIR5oKiPFW3 .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-LLZJMRIR5oKiPFW3 .edgeLabel rect{opacity:0.9}#mermaid-svg-LLZJMRIR5oKiPFW3 .edgeLabel span{color:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-LLZJMRIR5oKiPFW3 .cluster text{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-LLZJMRIR5oKiPFW3 .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-LLZJMRIR5oKiPFW3 text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-LLZJMRIR5oKiPFW3 .actor-line{stroke:grey}#mermaid-svg-LLZJMRIR5oKiPFW3 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .sequenceNumber{fill:#fff}#mermaid-svg-LLZJMRIR5oKiPFW3 #sequencenumber{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 #crosshead path{fill:#333;stroke:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .messageText{fill:#333;stroke:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-LLZJMRIR5oKiPFW3 .labelText,#mermaid-svg-LLZJMRIR5oKiPFW3 .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-LLZJMRIR5oKiPFW3 .loopText,#mermaid-svg-LLZJMRIR5oKiPFW3 .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-LLZJMRIR5oKiPFW3 .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-LLZJMRIR5oKiPFW3 .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-LLZJMRIR5oKiPFW3 .noteText,#mermaid-svg-LLZJMRIR5oKiPFW3 .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-LLZJMRIR5oKiPFW3 .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-LLZJMRIR5oKiPFW3 .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-LLZJMRIR5oKiPFW3 .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-LLZJMRIR5oKiPFW3 .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 .section{stroke:none;opacity:0.2}#mermaid-svg-LLZJMRIR5oKiPFW3 .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-LLZJMRIR5oKiPFW3 .section2{fill:#fff400}#mermaid-svg-LLZJMRIR5oKiPFW3 .section1,#mermaid-svg-LLZJMRIR5oKiPFW3 .section3{fill:#fff;opacity:0.2}#mermaid-svg-LLZJMRIR5oKiPFW3 .sectionTitle0{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .sectionTitle1{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .sectionTitle2{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .sectionTitle3{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-LLZJMRIR5oKiPFW3 .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 .grid path{stroke-width:0}#mermaid-svg-LLZJMRIR5oKiPFW3 .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-LLZJMRIR5oKiPFW3 .task{stroke-width:2}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskText:not([font-size]){font-size:11px}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-LLZJMRIR5oKiPFW3 .task.clickable{cursor:pointer}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskText0,#mermaid-svg-LLZJMRIR5oKiPFW3 .taskText1,#mermaid-svg-LLZJMRIR5oKiPFW3 .taskText2,#mermaid-svg-LLZJMRIR5oKiPFW3 .taskText3{fill:#fff}#mermaid-svg-LLZJMRIR5oKiPFW3 .task0,#mermaid-svg-LLZJMRIR5oKiPFW3 .task1,#mermaid-svg-LLZJMRIR5oKiPFW3 .task2,#mermaid-svg-LLZJMRIR5oKiPFW3 .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskTextOutside0,#mermaid-svg-LLZJMRIR5oKiPFW3 .taskTextOutside2{fill:#000}#mermaid-svg-LLZJMRIR5oKiPFW3 .taskTextOutside1,#mermaid-svg-LLZJMRIR5oKiPFW3 .taskTextOutside3{fill:#000}#mermaid-svg-LLZJMRIR5oKiPFW3 .active0,#mermaid-svg-LLZJMRIR5oKiPFW3 .active1,#mermaid-svg-LLZJMRIR5oKiPFW3 .active2,#mermaid-svg-LLZJMRIR5oKiPFW3 .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-LLZJMRIR5oKiPFW3 .activeText0,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeText1,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeText2,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeText3{fill:#000 !important}#mermaid-svg-LLZJMRIR5oKiPFW3 .done0,#mermaid-svg-LLZJMRIR5oKiPFW3 .done1,#mermaid-svg-LLZJMRIR5oKiPFW3 .done2,#mermaid-svg-LLZJMRIR5oKiPFW3 .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-LLZJMRIR5oKiPFW3 .doneText0,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneText1,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneText2,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneText3{fill:#000 !important}#mermaid-svg-LLZJMRIR5oKiPFW3 .crit0,#mermaid-svg-LLZJMRIR5oKiPFW3 .crit1,#mermaid-svg-LLZJMRIR5oKiPFW3 .crit2,#mermaid-svg-LLZJMRIR5oKiPFW3 .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-LLZJMRIR5oKiPFW3 .activeCrit0,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeCrit1,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeCrit2,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-LLZJMRIR5oKiPFW3 .doneCrit0,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneCrit1,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneCrit2,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-LLZJMRIR5oKiPFW3 .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-LLZJMRIR5oKiPFW3 .milestoneText{font-style:italic}#mermaid-svg-LLZJMRIR5oKiPFW3 .doneCritText0,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneCritText1,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneCritText2,#mermaid-svg-LLZJMRIR5oKiPFW3 .doneCritText3{fill:#000 !important}#mermaid-svg-LLZJMRIR5oKiPFW3 .activeCritText0,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeCritText1,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeCritText2,#mermaid-svg-LLZJMRIR5oKiPFW3 .activeCritText3{fill:#000 !important}#mermaid-svg-LLZJMRIR5oKiPFW3 .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-LLZJMRIR5oKiPFW3 g.classGroup text .title{font-weight:bolder}#mermaid-svg-LLZJMRIR5oKiPFW3 g.clickable{cursor:pointer}#mermaid-svg-LLZJMRIR5oKiPFW3 g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-LLZJMRIR5oKiPFW3 g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-LLZJMRIR5oKiPFW3 .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-LLZJMRIR5oKiPFW3 .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-LLZJMRIR5oKiPFW3 .dashed-line{stroke-dasharray:3}#mermaid-svg-LLZJMRIR5oKiPFW3 #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 .commit-id,#mermaid-svg-LLZJMRIR5oKiPFW3 .commit-msg,#mermaid-svg-LLZJMRIR5oKiPFW3 .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-LLZJMRIR5oKiPFW3 g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-LLZJMRIR5oKiPFW3 g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-LLZJMRIR5oKiPFW3 g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-LLZJMRIR5oKiPFW3 .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-LLZJMRIR5oKiPFW3 .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-LLZJMRIR5oKiPFW3 .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-LLZJMRIR5oKiPFW3 .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-LLZJMRIR5oKiPFW3 .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-LLZJMRIR5oKiPFW3 .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-LLZJMRIR5oKiPFW3 .edgeLabel text{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-LLZJMRIR5oKiPFW3 .node circle.state-start{fill:black;stroke:black}#mermaid-svg-LLZJMRIR5oKiPFW3 .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-LLZJMRIR5oKiPFW3 #statediagram-barbEnd{fill:#9370db}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-state .divider{stroke:#9370db}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-LLZJMRIR5oKiPFW3 .note-edge{stroke-dasharray:5}#mermaid-svg-LLZJMRIR5oKiPFW3 .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-LLZJMRIR5oKiPFW3 .error-icon{fill:#522}#mermaid-svg-LLZJMRIR5oKiPFW3 .error-text{fill:#522;stroke:#522}#mermaid-svg-LLZJMRIR5oKiPFW3 .edge-thickness-normal{stroke-width:2px}#mermaid-svg-LLZJMRIR5oKiPFW3 .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-LLZJMRIR5oKiPFW3 .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-LLZJMRIR5oKiPFW3 .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-LLZJMRIR5oKiPFW3 .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-LLZJMRIR5oKiPFW3 .marker{fill:#333}#mermaid-svg-LLZJMRIR5oKiPFW3 .marker.cross{stroke:#333}:root { --mermaid-font-family: "trebuchet ms", verdana, arial;}#mermaid-svg-LLZJMRIR5oKiPFW3 {color: rgba(0, 0, 0, 0.75);font: ;}

a==1
a==2
处理操作1
处理操作2
开始
圆角
条件1
结果一
结果二
结束

  1. 脚注内容 ↩︎

  2. 独立物种 ↩︎

MarkDown 基础语法速成初级篇相关推荐

  1. 小白的markdown基础语法总结

    markdown基础语法 使用markdown写博客也有一段时间了,现在对我使用到的一下语法作个总结. 其他语法以后用到再进行补充~ 文章目录 markdown基础语法 生成目录 各级标题 1级 2级 ...

  2. 1.markdown基础语法

    markdown 基础语法 使用VScode时的一些意外情况 最开始用的是vscode写md笔记,但是最后需要用它写代码,所以就去用其他的编辑器了,寻找过程一言难尽,因为我觉得大部分md编辑器都比不上 ...

  3. Markdown基础语法的学习

    Markdown基础语法 Markdown可以在任何地方使用,而且可以被任何系统的任何文本编辑工具打开,十分简便.同时程序员的世界更离不开它,GitHub.简书.csdn等都支持,而且官方技术文档都是 ...

  4. markdown基础语法的使用

    title: markdown基础语法的使用 一.快捷键 (1)对文字的特殊标注 标题 一个#键就是一级标题,一直可到六级标题(最多六个级别的标题) 下划线 一组标签可以给文字添加下划线或者ctrl+ ...

  5. Markdown基础语法教程

    目录 Markdown介绍 Markdown优缺点 优点 缺点 Markdown主要场景 Markdown基本语法 标题 列表 引用 脚注 高亮 斜体和粗体以及粗斜体 删除线(中划线) 分隔线 复选框 ...

  6. Markdown 基础语法与常见问题总结

    最近在用 Markdown编辑SCI科技论文的初稿, 所以在此记录一些win10使用Markdown pad2时遇到的问题与基础语法: 1. //半角空格(英文) 2. //全角空格(中文) 3.句末 ...

  7. 博学谷学习记录之人工智能(python基础语法)第一篇

    目录 写在前面 python基础语法介绍 1.python基础编程 python开发环境搭建 Python注释与变量 写在前面 我是大学学习土木工程专业2020年毕业,毕业后一直从事BIM工程师的职位 ...

  8. Markdown基础语法小结

    一.前言 Markdown是一种可以使用普通文本编辑器编写的标记语言,通过简单的标记语法,它可以使普通文本内容具有一定的格式. --摘自百度百科 没想到一向不太靠谱的百度百科这次竟有了如此精辟的解释. ...

  9. MarkDown基础语法记录

    基础语法记录,其中有一些博客园暂不支持 <!--标题--># 一级标题 ### 二级标题### 三级标题#### 四级标题##### 五级标题###### 六级标题 一级标题 二级标题 三 ...

最新文章

  1. 从放弃到入门-Yaf(框架生成)
  2. Web应用扫描测试工具Vega
  3. 闭包(匿名函数) php
  4. Spring mvc 3.0 入门及应用
  5. textmate开发一个blog
  6. Angular依赖注入的一个例子和注入原理单步调试
  7. jsp项目手动导出成war包
  8. Rube GoldbergSpring整合
  9. oracle实现mysql的if_oracle中decode函数 VS mysql中的if函数和case函数
  10. Perl常用语法记录
  11. 下列选项中不符合python语言变量命名规则的是_学习Python第二日--基本概念和类型...
  12. Sublime Text 3 搭建Python3 IDE
  13. 常见的预设分栏包括_计算机应用基础_实训项目二Word综合应用
  14. java变量类型概念_java变量类型
  15. RedisTemplate 数据结构 使用方法
  16. 干掉visio,这个画图神器太香了
  17. ViewPager嵌套viewpager有什么冲突问题
  18. c语言谭浩强第五版复习梳理1
  19. 【锂电】锂电工艺大全
  20. 必备的查询网址:查征信、婚姻、交友借钱明明白白

热门文章

  1. 英语口语七十九之[如何回应Thank u]
  2. html背景图片全屏效果的方式
  3. 顶尖众筹商业模式实操案例分享,打开你全新的赚钱思维!
  4. 微信“拍一拍”升级,罗列些含有“拍”字的宋词,方便二次编辑,如“朋友拍了拍你的 危栏,高兴酒浓。”
  5. python hack-requests_python全自动无人值守爬取某网站妹子图集
  6. java中加减乘除优先级_java运算符优先级
  7. python怎么生成词云图
  8. 腾讯智慧校园 php,【腾讯智慧校园V1.43】发布
  9. 为什么C语言运行效率高
  10. 改变世界的17个方程式