*斜体 换行需要先加两个空格,再回车*
_斜体_
**粗体**
***加粗体***
~~删除线 不是规范的markdown语法 js渲染那边会去掉~~
这是一个一级标题
===
这是一个二级标题
-------
#一级标题
##二级标题<a id ="2"></a>
###三级标题
####四级标题
#####五级标题
######六级标题
hello [这是一个超链接](http://www.baidu.com)
hello [这是一个超链接哦](http://www.baidu.com "我是备注哦")
这也是超链接哦:[百度][1]、[Google][2]、[网站 你懂得🙃]。
[1]:http://www.baidu.com
[2]:http://www.google.com
[网站 你懂得🙃]:http://www.4399.com
自动转成连接哦
<http://www.baidu.com>
跳转到二级标题[点这里开始跳哦](#2 "备注哦")
使用*,+,- 表示无序列表
* 无序列表哦
- 无序列表哦
- 无序列表哦
有序类别 数字接一个点
1. 这个是一哦
2. 这个是二哦
3. 这个是三哦
MarkDown
这里是代码块
应用的列表
* 阅读方法:
> 打开书本。
> 打开电灯。
这个是代码区块:
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, NSStringFromClass([CEApplicaiton class]), NSStringFromClass([AppDelegate class]));
}
}
// " 需要去掉
"```"
+ (CEUserDataManager *)shareManager{
static CEUserDataManager *ins = nil;
static dispatch_once_t once;
dispatch_once(&once, ^{
if (!ins) {
ins = [[CEUserDataManager alloc] init];
}
});
return ins;
}
"```"
这个是行内代码`scanf()`哈哈哈
特殊情况:
1986. what
1986\. what
这个是一个引用:
>两段文字的引用:
>第一段。。。
>
>第二段。。。
>第二段 第二行
>一个符号就可以哦
哈哈哈
这个是可以偷懒的
下面是多层引用:
>>>三层引用.....
>>二层引用...
>一层引用...
插入图片:
1:
![花儿..](https://img2.baidu.com/it/u=2277688752,4125247057&fm=253&fmt=auto&app=138&f=JPEG?w=501&h=500 "美丽花儿")
2:
![花儿...][flower]
[flower]:https://img2.baidu.com/it/u=2277688752,4125247057&fm=253&fmt=auto&app=138&f=JPEG?w=501&h=500 "美丽花儿"
注脚:
这是一个注脚测试[^footer1]。
这是一个注脚测试[^footer3]。
这是一个注脚测试[^footer4]。
[^footer1]: 这是一个测试,用来阐释注脚。
[^footer3]: 这是一个测试,用来阐释注脚。
[^footer4]: 这是一个测试,用来阐释注脚。
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>
公式:
E = mc^2
\sum_{i=1}^n a_i=0
$$f(x_1,x_x,\ldots,x_n) = x_1^2 + x_2^2 + \cdots + x_n^2 $$
$$\sum^{j-1}_{k=0}{\widehat{\gamma}_{kj} z_k}$$
$$x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}$$
>\\(x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}\\)
<a href="https://latex.codecogs.com/svg.image?latex=x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}" target="_blank">![x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}](https://latex.codecogs.com/gif.latex?x=\frac{-b\pm\sqrt{b^2-4ac}}{2a})</a>
**流程图**
flow
st=>start: Start:>https://www.zybuluo.com
io=>inputoutput: verification
op=>operation: Your Operation
cond=>condition: Yes or No?
sub=>subroutine: Your Subroutine
e=>end
st->io->op->cond
cond(yes)->e
cond(no)->sub->io
表格:
| 学号 | 姓名 | 分数 |
| --- | :---: | ---:|
|小明|男|75|
|小红|女|79|
|小陆|男|92|
| 学号 | 姓名 | 分数 |
| ----|:----:|----:|
|小明|男|75|
|小红|女|79|
|小陆|男|92|
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
HTML代码:
<div class="footer">
© 2004 Foo Corporation
</div>
<table>
<tr>
<th rowspan="2">值班人员</th>
<th>星期一</th>
<th>星期二</th>
<th>星期三</th>
</tr>
<tr>
<td>李强</td>
<td>张明</td>
<td>王平</td>
</tr>
</table>
斜体 换行需要先加两个空格,再回车
斜体
粗体
加粗体
删除线 不是规范的markdown语法 js渲染那边会去掉
这是一个一级标题
这是一个二级标题
一级标题
二级标题<a id ="2"></a>
三级标题
四级标题
五级标题
六级标题
这也是超链接哦:[百度][1]、[Google][2]、[网站 你懂得🙃]。
[1]:http://www.baidu.com
[2]:http://www.google.com
[网站 你懂得🙃]:http://www.4399.com
自动转成连接哦
http://www.baidu.com
跳转到二级标题点这里开始跳哦
使用*,+,- 表示无序列表
- 无序列表哦
- 无序列表哦
- 无序列表哦
有序类别 数字接一个点
- 这个是一哦
- 这个是二哦
- 这个是三哦
MarkDown
这里是代码块
应用的列表
-
阅读方法:
打开书本。
打开电灯。
这个是代码区块:
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, NSStringFromClass([CEApplicaiton class]), NSStringFromClass([AppDelegate class]));
}
}
+ (CEUserDataManager *)shareManager{
static CEUserDataManager *ins = nil;
static dispatch_once_t once;
dispatch_once(&once, ^{
if (!ins) {
ins = [[CEUserDataManager alloc] init];
}
});
return ins;
}
这个是行内代码scanf()
哈哈哈
特殊情况:
- what
1986. what
这个是一个引用:
两段文字的引用:
第一段。。。第二段。。。
第二段 第二行
一个符号就可以哦
哈哈哈
这个是可以偷懒的
下面是多层引用:
三层引用.....
二层引用...
一层引用...
插入图片:
1:
2:
注脚:
这是一个注脚测试[1]。
这是一个注脚测试[2]。
这是一个注脚测试[3]。
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>
公式:
E = mc^2
\sum_{i=1}^n a_i=0
\(x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}\)
![公式图片](https://latex.codecogs.com/gif.latex?x=\frac{-b\pm\sqrt{b^2-4ac}}{2a})
流程图
flow
st=>start: Start:>https://www.zybuluo.com
io=>inputoutput: verification
op=>operation: Your Operation
cond=>condition: Yes or No?
sub=>subroutine: Your Subroutine
e=>end
st->io->op->cond
cond(yes)->e
cond(no)->sub->io
表格:
学号 | 姓名 | 分数 |
---|---|---|
小明 | 男 | 75 |
小红 | 女 | 79 |
小陆 | 男 | 92 |
学号 | 姓名 | 分数 |
---|---|---|
小明 | 男 | 75 |
小红 | 女 | 79 |
小陆 | 男 | 92 |
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
HTML代码:
<div class="footer">
© 2004 Foo Corporation
</div>
<table>
<tr>
<th rowspan="2">值班人员</th>
<th>星期一</th>
<th>星期二</th>
<th>星期三</th>
</tr>
<tr>
<td>李强</td>
<td>张明</td>
<td>王平</td>
</tr>
</table>