Markdown语法
标题
一级标题 #+内容
二级标题 ##+内容
三级标题 ###+内容
一级标题
二级标题
三级标题
列表
**无序列表**
* Red
* Green
* Blue
+ Red
+ Green
+ Blue
**有序列表**
1. Bird
2. cat
3. tiger
无序列表
Red
Green
-
Blue
- Red
- Green
- Blue
有序列表
- Bird
- cat
- tiger
引用
>+内容
引用
图片与链接
图片:![维基百科](http://upload-images.jianshu.io/upload_images/4481918-3b6478d27d6491d7.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
链接:[markdown](http://markdown.tw)
斜体与粗体
斜体:*斜体*
粗体:**粗体**
斜体
粗体
表格
|语言|git_Start|
|----|---------|
|java|*********|
|C#|**********|
|C|*********|
|C++|*********|
语言 | git_Start |
---|---|
java | ********* |
C# | ******** |
C | ********* |
C++ | ********* |
代码框
行内代码:`select * from tabs`
块代码:
```
publci class Hello{
public static void main(String [] args){
System.out.println("hello markdown!");
}
}
select * from tabs;
public class hello{
public static void main(String [] args){
System.out.println("hello markdown!");
}
}
分割线
华丽的分割线:***
---