Markdown
换行
语法规范是空格+空格+回车换行
超链接
方法一:
1 | [FreeBuf](http://www.freebuf.com/) |
方法二:
1 | Some text with [a link][1] and |
Some text with a link and
another link .
列表
1 | 1. 有序列表项 1 |
有序列表项 1
有序列表项 2
有序列表项 3
1 | * 无序列表项 1 |
无序列表项 1
无序列表项 2
无序列表项 3
- 任务列表 1
- 任务列表 2
强调
1 | ~~删除线~~ |
删除线
加黑
斜体
标题
1 | # 一级标题 |
Tips: #
与标题中间要加空格。
表格
1 | | HEADER1 | HEADER2 | HEADER3 | HEADER4 | |
HEADER1 | HEADER2 | HEADER3 | HEADER4 |
---|---|---|---|
content | content | content | content |
- :—– 表示左对齐
- :—-: 表示中对齐
- —–: 表示右对齐
代码块
代码实现方式是键盘的(也就是下一点点)键3次 (不需要按Shift)
其实按Shift变成~也是可以生效的。
1
2 >(No Shift)
>print 'Hello, World!'
1 | print 'Hello, World!' |
你也可以通过键盘的~键一次实现不需要高亮的代码。
引用
1 | > This is Quote text |
This is Quote text
This is Quoted quote.
图片
1 | ![本站favicon](/images/favicon.ico) |
锚点
1 | * [目录](#目录) |
Emoji
:camel:
:blush:
:smile:
Footnotes
1 | This is a text with footnote[^1]. |
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 | Andrew->China: Says Hello |
flowchart
1 | st=>start: Start |
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 | # topic |
其他参考资料
- 标题: 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 进行许可。
评论