其实应该很早就已经接触到了Markdown这种简洁却彪悍的标记语言,比如Github的README.md,只不过被不走心的我当作txt文档来用了。直到前个看到一位大神的读书列表清单,觉得很新奇,就有意识地查阅了一些语法,瞬间被吸引到了。本文便记录部分常用的语法。

1、标题 #

<!-- MD -->
## this is heading level 2
<!-- HMTL -->
<h2>this is heading level 2</h2>

2、列表

(1)无序列表 +/-/*

<!-- MD -->
* Fruit
+ Apple
+ Banana
+ Orange
* Food
* Animal
<!-- HMTL -->
<ul>
<li>Fruit
<ul><li>Apple</li>
<li>Banana</li>
<li>Orange</li></ul>
</li>
<li>Food</li>
<li>Animal</li>
</ul>

(2)有序列表 数字.

<!--  MD -->
1. Apple
1. Banana
1. Orange
<!-- HMTL -->
<ol>
<li>Apple</li>
<li>Banana</li>
<li>Orange</li>
</ol>

3、引用 >

<!-- MD -->
> I hope this post proves helpful to someone else that encounters the problem.
> > It was almost as frustrating to find the culprit the second time …
<!-- HTML -->
<blockquote>
<p>I hope this post proves helpful to someone else that encounters the problem.</p>
<blockquote>
<p>It was almost as frustrating to find the culprit the second time … </p>
</blockquote>
</blockquote>

4、代码块 `

<!-- MD -->
```javascript
testData = ' - time:' + new Date().getTime() + ' <br> ';
localStorage.setItem("test", testData);
```
<!-- HTML -->
<pre><code class="javascript">testData = ' - time:' + new Date().getTime() + ' &lt;br&gt; ';
localStorage.setItem("test", testData);
</code></pre>

5、强调 */_

<!-- MD -->
This is the *emphasis* code. and That is the most **important** part.
<!-- HTML -->
<p>This is the <em>emphasis</em> code. and That is the most <strong>important</strong> part.</p>

6、超链接 [text] (url title) / [text] [id] .. [id]: url title

(1)内联方式:

<!-- MD -->
This is [inline-link](http://daringfireball.net/projects/markdown/dingus "Title-md demo") inline link.
<!-- HTML -->
<p>This is <a href="http://daringfireball.net/projects/markdown/dingus" title="Title-md demo">inline-link</a> inline link.</p>

(2)引用方式:

<!-- MD -->
This is [ref-link] [ref-1] reference-style link.
[ref-1]: http://daringfireball.net/projects/markdown/dingus "Title-md demo"
<!-- HTML -->
<p>This is <a href="http://daringfireball.net/projects/markdown/dingus" title="Title-md demo">ref-link</a> reference-style link.</p>

7、图片 ![text] (url title) -- 两种方式同超链接

<!-- MD -->
![Alt text](/path/to/img.jpg "Optional title")
<!-- HTML -->
<img alt="Alt text" src="/path/to/img.jpg" title="Optional title">

8、图片 :name:

<!-- MD -->
:+1:
<!-- HTML -->
<img align="absmiddle" alt=":+1:" class="emoji" height="20px" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f44d.png" title=":+1:" width="20px">

9、脚本引用 [^id]

<!-- MD -->
Footnotes[^fnote-1] are added in-text like so ...
[^fnote-1]:
Footnotes are detailed explanation.
There are always long conents in the footnotes.
<!-- HTML -->
<p>Footnotes<sup id="fnref:fnote-1"><a class="footnote-ref" href="#fn:fnote-1" rel="footnote">1</a></sup> are added in-text like so …</p>
<div class="footnote">
<hr>
<ol>
<li id="fn:fnote-1">
<p>Footnotes are detailed explanation.<br>
There are always long conents in the footnotes.&nbsp;<a class="footnote-backref" href="#fnref:fnote-1" rev="footnote" title="Jump back to footnote 1 in the text">↩</a></p>
</li>
</ol>
</div>

附:使用sublime预览MD文件

安装 :

Ctrl + Shift + P | PCI | Markdown Preview

预览快捷键:(Package Control Messages [To preview] 说明)

{ "keys": ["alt+m"], "command": "markdown_preview", "args": {"target": "browser", "parser":"markdown"} }

参考:

https://daringfireball.net/projects/markdown/syntax

https://rephrase.net/box/word/footnotes/syntax/

http://www.cnblogs.com/hnrainll/p/3514637.html

http://blog.csdn.net/kaitiren/article/details/38513715

http://www.webpagefx.com/tools/emoji-cheat-sheet/

https://www.macstories.net/roundups/sublime-text-2-and-markdown-tips-tricks-and-links/

http://note.youdao.com/share/?id=b2ea64a76aa487a67ea504f70b1bb914&type=note#/

最新文章

  1. 01 Linux档案与目录管理
  2. WebApi系列~在WebApi中实现Cors访问
  3. HDU 1533 最小费用最大流(模板)
  4. Menu菜单
  5. poj 2553 The Bottom of a Graph
  6. 深入解析.NET框架
  7. 水平居中的两种方法margin text-align
  8. Jquery学习笔记:删除节点的操作
  9. iOS开发之如何修改导航栏的内容
  10. python添加自定义cookies
  11. 学习MySQL(上)
  12. Even Parity UVA - 11464 (枚举)
  13. zabbix 监控 WEB 应用性能
  14. pycharm的中文汉化
  15. pl sql 记住用户名密码
  16. “Linux内核分析”实验二报告
  17. Windows下CRF++进行中文人名识别的初次尝试
  18. Flash数据的采集方法-搜房房价走势采集
  19. Flask 学习(二)路由
  20. C#------?和??运算符的作用

热门文章

  1. (转)Python爬虫学习笔记(2):Python正则表达式指南
  2. 关于MongoDB最大连接数的查看与修改
  3. 第二百三十七节,Bootstrap图标菜单按钮组件
  4. 第一百四十五节,JavaScript,同步动画
  5. Codeforces 193A. Cutting Figure
  6. IntelliJ Idea Hide excluded folders 隐藏或显示你需要的文件夹
  7. python之gevent模块实现协程
  8. github删除已经push到服务器上的commit的方法
  9. 170306、wamp中的Apache开启gzip压缩提高网站的响应速度
  10. Less-mixin函数基础一