Markdown

暗香疏影 创作者

换行

语法规范是空格+空格+回车换行

超链接

方法一:

1
2
3
[FreeBuf](http://www.freebuf.com/)

<http://www.freebuf.com/>

FreeBuf

http://www.freebuf.com/

方法二:

1
2
3
4
5
6
Some text with [a link][1] and
another [link][2].

[1]: http://example.com/ "Title"
[2]: http://example.org/ "Title"
The reference section can be anywhere in the document

Some text with a link and
another link .

列表

1
2
3
4
5
1. 有序列表项 1

2. 有序列表项 2

3. 有序列表项 3
  1. 有序列表项 1

  2. 有序列表项 2

  3. 有序列表项 3

1
2
3
4
5
* 无序列表项 1

* 无序列表项 2

* 无序列表项 3
  • 无序列表项 1

  • 无序列表项 2

  • 无序列表项 3

  • 任务列表 1
  • 任务列表 2

强调

1
2
3
4
5
~~删除线~~

**加黑**

*斜体*

删除线

加黑

斜体

标题

1
2
3
4
5
6
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题

Tips: # 与标题中间要加空格。

表格

1
2
3
| HEADER1 | HEADER2 | HEADER3 | HEADER4 |
| ------- | :------ | :-----: | ------: |
| content | content | content | content |
HEADER1 HEADER2 HEADER3 HEADER4
content content content content
  1. :—– 表示左对齐
  2. :—-: 表示中对齐
  3. —–: 表示右对齐

代码块

代码实现方式是键盘的(也就是下一点点)键3次 (不需要按Shift)
其实按Shift变成~也是可以生效的。

1
2
>(No Shift)   
>print 'Hello, World!'
1
print 'Hello, World!'

你也可以通过键盘的~键一次实现不需要高亮的代码。

引用

1
2
> This is Quote text
>> This is Quoted quote.

This is Quote text

This is Quoted quote.

图片

1
2
3
![本站favicon](/images/favicon.ico)
或:
![图片示例]({{ site.url }}/images/wiki/example.jpg)

本站favicon

锚点

1
* [目录](#目录)

Emoji

:camel:
:blush:
:smile:

Footnotes

1
2
3
4
This is a text with footnote[^1].

[^1]: Here is the footnote 1 definition.
上一行会出现在页尾

This is a text with footnote[^1].
解释会出现在页尾

[^1]: Here is the footnote 1 definition.

mermaid

sequenceDiagram Alice-->>John: Hello John, how are you? John-->>Alice: Great!

sequence

1
2
3
4
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!

flowchart

1
2
3
4
5
6
7
8
9
10
11
st=>start: Start
e=>end
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?
io=>inputoutput: catch something...

st->op1->cond
cond(yes)->io->e
cond(no)->sub1(right)->op1

mathjax

When $$(a \ne 0)$$, there are two solutions to $$(ax^2 + bx + c = 0)$$ and they are

$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$

mindmap

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# topic
## topic2
### topic2.1
### topic2.2
## topic3
<!--Note-->
这是一个备注
<!--/Note-->
### topic3.1
### topic3.2
#### topic3.2.1
#### topic3.2.2
#### topic3.2.3
#### topic3.2.4
#### topic3.2.5
### topic3.4
### topic3.5
### topic3.6

其他参考资料

WordPress Markdown Quick Reference

  • 标题: Markdown
  • 作者: 暗香疏影
  • 创建于 : 2018-08-15 00:00:00
  • 更新于 : 2020-10-01 00:00:00
  • 链接: https://blog.23ikr.com/2018/08/15/Wiki-Guide/2018-08-08-markdown/
  • 版权声明: 本文章采用 CC BY-NC-SA 4.0 进行许可。
评论