unify use H4 as example codes headlines

unify use H4 as example codes  headlines
This commit is contained in:
B1nj0y 2017-05-12 00:08:22 +08:00 committed by GitHub
parent 18e8b016f7
commit 0ebb3b2c51

View File

@ -170,7 +170,7 @@ func main() {
}
```
### Multipart/Urlencoded Form
#### Multipart/Urlencoded Form
```go
func main() {
@ -190,7 +190,7 @@ func main() {
}
```
### Another example: query + post form
#### Another example: query + post form
```
POST /post?id=1234&page=1 HTTP/1.1
@ -220,7 +220,7 @@ func main() {
id: 1234; page: 1; name: manu; message: this_is_great
```
### Another example: upload file
#### Another example: upload file
References issue [#548](https://github.com/gin-gonic/gin/issues/548).
@ -373,7 +373,7 @@ func main() {
```
### Multipart/Urlencoded binding
#### Multipart/Urlencoded binding
```go
package main