MarkDown,写出个性、漂亮的文档

http://www.markdown.cn

# Title1
## Title2
### Title3
content
==
content2
--
content3
--
* name
- name
+ name

* [I'm an inline-style link](https://www.google.com)
* Inline `code` has `back-ticks around` it.

```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```

以上为基本语法,简单介绍几个,其他方法自测

下面为效果:

原文地址:https://www.cnblogs.com/jinhh/p/8622323.html