1级标题
2级标题
3级标题
4级标题
5级标题
6级标题
斜体
加粗
加粗+斜体删除线
上标a
下标a
键盘
Ctrl + Alt + A
分隔符
邮箱链接
xxx@outlook.com
hello world!
hello world!
hello world!
代码3(多层嵌套)
aaaaaaaaa
bbbbbbbbb
cccccccccc
行内标记
标记之外hello world
标记之外
代码块
<div>
<div>1</div>
<div>2</div>
<div>3</div>
</div>
for (var i = 0; i < 5; i++) {
num+=i;
}
console.log(num);
[百度1](http://www.baidu.com/" 百度一下”)
插入图片带有链接
有序
- one
- two
- three
无序
- one
- two
- three
序表嵌套
- one
- one-1
- two-2
- two
- two-1
- two-2
序表嵌套代码块
one
var a = 10; // 与上行保持空行并 递进缩进
任务列表
- 选项一
- 选项二
- [选项3]
表格
表格自适应:
//jQuery
//判断是否有表格 表格需要自适应
if($("table").html()){
$("table").wrap("<div style='overflow-x: auto;'></div>");
}
//javascript
[].slice.call(document.querySelectorAll('table')).forEach(function(el){
var wrapper = document.createElement('div');
wrapper.style.overflowX="auto";
el.parentNode.insertBefore(wrapper, el);
el.parentNode.removeChild(el);
wrapper.appendChild(el);
})
a | b | c |
---|---|---|
居中 | 左对齐 | 右对齐 |
========= | =============== | ============ |
a | b | c |
---|
居中 | 左对齐 | 右对齐
============|=================|=============