1. Comment 注释
<!-- comment -->
[//]: # (comment)
[//]: <> (comment)
[^_^]: # (comment)
[comment]: <> (comment)
<div style='display: none'>comment</div>
select * from party
4. Table 表格
第二行分割表头和内容:-有一个就行,为对齐,可酌情增减;
文字默认居左,-两边加:文字居中,-右边加:表示文字居右;
注:原生语法两边都要用|包起来,此处省略
姓名|技能|排行
--|:--:|--:
刘备|哭|大哥
关羽|打|二哥
张飞|骂|三弟
5. Source Highlight
5.4. 语法高亮,推荐
``` key
code segment
```
``` shell
# 编译与安装
make && make install
```
5.4.1. 常用高亮语言
Key|Language
--:|:--
asciidoc|*.adoc
bash|*.sh,*.bash
bat|*.bat,*.cmd
c|*.c,*.h
cpp|*.cpp
css|*.css
erlang|*.erl
go|*.go
gradle|gradle
html|*.html,*.htm
ini|*.ini,*.cfg
java|*.java
js|*.js
javascript|*.js
jsp|*.jsp
json|*.json
markdown|*.md
nginx|Nginx
properties|*.properties
protobuf|*.proto
scaml|*.scaml
sql|*.sql
text|*.txt
velocity|*.vm
xml|*.xml
xslt|*.xsl,*.xslt
yaml|*.yaml,*.yml
6. Link 链接
6.1. Image 图片
![alt text](img url "Optional title")
![Security](https://ico.ooopic.com/ajax/iconpng/?id=186750.png "安全")
子路径
![avatar](folderName/imgName.jpg)
当前路径: ./
![avatar](./folderName/imgName.jpg)
父路径用"../":
![avatar](../imgName.jpg)
8. Block Element 区块元素
8.1. 类Setext形式
-
用底线形式,利用=(最高阶标题)和-(第二阶标题),任何数量的=和-均可
High Level Title
================
Low Level Title
---------------
8.2. 类Atx形式
-
在行首插入1~6个#,对应到标题1到6阶
# H1 Title
## H2 Title
### H3 Title
#### H4 Title
##### H5 Title
###### H6 Title
8.3. 选择性的闭合类Atx样式标题
-
在行尾加#,而行尾#数量也不用和开头一样,
-
行首的#字符数量决定标题的阶数
# H1 Title ######
## H2 Title #####
### H3 Title ####
#### H4 Title ###
##### H5 Title ##
###### H6 Title #
8.4. 区块引用Blockquote
-
在每行最前面添加>,也可以只在第一行最前加>
> all features are available free of charge.
> It is a full version: no hidden payments,demo versions,or limitations.
> all features are available free of charge.
It is a full version: no hidden payments,demo versions,or limitations.