Markdown格式

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++) &#123;
    num+=i;
&#125;
console.log(num);

[百度1](http://www.baidu.com/" 百度一下”)

插入图片带有链接

有序

  1. one
  2. two
  3. three

无序

序表嵌套

  1. one
    1. one-1
    2. two-2
  2. two
    • two-1
    • two-2

序表嵌套代码块

任务列表

表格
表格自适应:

//jQuery
//判断是否有表格  表格需要自适应
if($("table").html())&#123;
    $("table").wrap("<div style='overflow-x: auto;'></div>");
&#125;
//javascript
[].slice.call(document.querySelectorAll('table')).forEach(function(el)&#123;
    var wrapper = document.createElement('div');
    wrapper.style.overflowX="auto";
    el.parentNode.insertBefore(wrapper, el);
    el.parentNode.removeChild(el);
    wrapper.appendChild(el);
&#125;)
abc
居中左对齐右对齐
====================================
abc
居中    |     左对齐      |   右对齐    

============|=================|=============

推荐