Git markdown
1.0.0
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
*Italics*
**Bold text**
***Bold and Italics***
~~Striked Text~~
斜体
大胆的文字
大胆和斜体
罢工文字
无序列表
* list1
* list2
* sublist1
* sublist2
排序列表
1. First
2. Second
3. Third
1. Three / One
2. Three / Two
4. Fourth
* [This is a link to GitHub](https://github.com "GitHub Home Page")
* <https://www.google.com/>

与链接一样,但在打开方括号之前添加一个exlamation标记(!)。
方括号包含图像和括号的alt其中包含图像源。
图像源可以是本地计算机或任何有效图像URL的位置。
最后一部分包含有关使用悬停在其上时显示的图像的其他信息。
要在单击图像时打开另一个网页,请将图像的标记包装在括号中,然后在括号中添加链接。
[](https://github.com/)
我们在Markdown上使用HTML轻松调整图像大小。
<img src="https://cdn4.iconfinder.com/data/icons/iconsimple-logotypes/512/github-512.png" height="50%" width="50%">
通过使用height=""和width=""我们可以轻松调整图像大小。在示例中,我们使用了50%,因此图像大小已降至图像的50%。
|Header1|Header2|Header3|
| --- | --- | --- |
| This | is a | table |
| This | is 2nd | row |
| This | is 3rd | row |
| 标头1 | 标头2 | 标题3 |
|---|---|---|
| 这 | 是一个 | 桌子 |
| 这 | 是第二 | 排 |
| 这 | 是第三 | 排 |
* [ ] Checkbox1
* [ ] Checkbox2
* [x] Checkbox selected
or
- [ ] Checkbox1
- [ ] Checkbox2
- [x] Checkbox selected
Checkbox1
Checkbox2
选择的复选框
使用
- [ ]或* []没有区别。它显示相同的复选框。您可以两者都使用。
> This is a block quoted text
这是一个引用的文字
***
___
---
这三个将被渲染为:
有三种方法可以在Markdown中添加代码
`this` is an example of inline code.
'''
console.log('Used backticks to show snippets')
'''
console.log('four whitespace works too!')
this是内联代码的示例。
console.log('Used backticks to show snippets')
console.log('four whitespace works too!')
如果在第一组Backticks结束后提到语言名称,则代码段将根据语言突出显示。
```js
console.log('javascript')
```
```python
print('python')
```
```java
System.out.println('java')
```
```json
{
"firstName": "Kaushal",
"lastName": "Joshi
"age": 18
}
```
JavaScript编程语法
console . log ( 'javascript' )C编程语法
printf ( "Hello World!n" );Python编程语法
print ( 'python' )Java编程语法
System . out . println ( 'java' )JSON编程语法
{
"firstName" : " Kaushal " ,
"lastName" : " Joshi " ,
"age" : 18
}XML编程语法
< Person >
< FirstName >
Anurag
</ FirstName >
< LastName >
P
</ LastName >
</ Person > *This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_
本文将是斜体的,这也将是斜体
本文将大胆,这也将是大胆的
你可以结合起来
您可以添加
<br>
在线之间插入休息
本文之间有一个突破,这将成为第二部分
写入下一行。