makedown学习笔记(以后可能会用makedown写博客)

学习手册 https://www.zybuluo.com/mdeditor?url=https%3A%2F%2Fwww.zybuluo.com%2Fstatic%2Feditor%2Fmd-help.markdown

以下笔记

符号都用英语!!!博客园在选项里面改啊,能在GitHub玩啊!!!

[ 外连接描述 ]( 链接地址 )

# 不同级别的标题 (以此类推,一共六个#)

*斜体* **粗体** ***粗斜体***

tags: (标签)

```language
代码块
```

*, +, -, 表示无序列表

1. 数字和点表示有序列表

> 文字引用,有点像代码块

'cin' (行内代码块)

四个缩进空格表示代码块

![ 描述 ]( 图片链接 ) (插入图像)

[TOC] (显示全文内容的目录结构)

~~内容~~ (删除线)

something[^footnote] (注脚)
another[^footnote2]
[^footnote]: (注脚解释)
[^footnote2]:

$E = mc^2$ (行内公式)
$$ (整行公式)
(具体公式 http://meta.math.stackexchange.com/questions/5020/mathjax-basic-tutorial-and-quick-reference)

(流程图语法 http://adrai.github.io/flowchart.js/)
(序列图语法 http://bramp.github.io/js-sequence-diagrams/)
(甘特图语法 https://knsv.github.io/mermaid/#gant-diagrams)
(。。。好多图)

(内嵌图标看不懂)

(Todo列表)
-[ ] **something should do**
    -[x] study
    -[ ] play

编辑器推荐的博客:https://www.williamlong.info/archives/4319.html

原文地址:https://www.cnblogs.com/shuizhidao/p/9744832.html