markdown Markdown个人常用语法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Markdown个人常用语法相关的知识,希望对你有一定的参考价值。

 总的原则:段落之间空一行,行尾加两个空格代表换行符(否则预期的下一行会显示在同一行),GFM语法在为知不支持,所以无法显示
---
### 标题文本(注意在最后一个#后面要空一格)
## This is an  h2 tag
###### This is an h6 tag

### 粗体,斜体,组合使用
*The text will be italic*  
_This will also be itatic_  
**This text will be bold**  
__This text will also be bold__  
*You can **combine** them*

### 无序列表,有序列表
* Item 1
* Item 2
  * Item 2a
  * Item 2b


1. Item 1
2. Item 2
3. Item 3
  * Item 3a
  * Item 3b

### 块状文字
As Grace Hopper said:
> I've always been more interested  
> in the future than in the past

### 转义符
\*literal asterisks\*

### 本地图片,网页图片
![Eclipes Version Logo](/home/congyihao/图片/eclipse版本.png)
![Image from Web](这里是链接地址)

### 网页链接
[百度](http://www.baidu.com)

### 表格(安装插件后,可以使用alt+shift+t一键对齐)
| First Header     | Second Header    |
|:-----------------|:-----------------|
| Content cell 1   | Content Cell 2   |
| Content column 1 | Content column 2 |

### GitHub特殊支持
#### emoji支持
Github supports emoji!  
:+1: :sparkles: :camel: :tada: :rocket: :metal: :octocat:
#### 代码高亮
##### 1. 单行代码高亮
在linux下可以使用`ls -al`查看当前目录下的所有文件
##### 2. 多行代码高亮
```java
public static void main(Strint[] args) {}
```
```scala
def main(args: String) {
  val test: Int = 1
}
```
#### todo list(注意前面的- 后面要空一格)
- [x]this is a complete Item
- [ ]this is an incomplete Item
- [x] @mentions, #refs, [百度](http://www.baidu.com),**formatting**, and<del>tags</del>supported
- [x]list syntax required (any unordered or ordered list
  supported)

### 其他一些常用的命令
***
分割线

以上是关于markdown Markdown个人常用语法的主要内容,如果未能解决你的问题,请参考以下文章

Markdown的常用语法(个人总结)

Markdown常用语法(个人总结)

markdown 常用语法总结 - 个人版

markdown(.md)常用语法

JIRA常用markdown语法整理

Markdown常用语法