github 编写README时常用的写法

参考:https://github.com/HeTingwei/ReadmeLearn#%E7%BC%96%E5%86%99readme%E6%97%B6%E5%B8%B8%E7%94%A8%E7%9A%84%E5%86%99%E6%B3%95

# 编写README时常用的写法
<br><br>
# 1级标题
## 2级标题
### 3级标题
#### 4级标题
**这个是粗体** <br>
*这个是斜体* <br>
***这个是粗体加斜体*** <br>

```
//代码块
int a=0;
a++;
```

|列名1|列名2|
|:---|:---|
|列1的内容1|列2的内容1|
|列1的内容2|列2的内容2|

[点击前往谷歌搜索的链接](https://www.google.com.hk/)

![](https://github.com/HeTingwei/ReadmeLearn/blob/master/avatar1.jpg)

<img src="https://github.com/HeTingwei/ReadmeLearn/blob/master/avatar1.jpg" width="150" height="150" alt="描述语言,写什么都不会显示出来"/>

<div align=center><img width="150" height="150" src="https://github.com/HeTingwei/ReadmeLearn/blob/master/avatar1.jpg"/></div>


原文地址:https://www.cnblogs.com/youxiu326/p/10782714.html