소스 검색

syntax highlight

Tao Wen 8 년 전
부모
커밋
5310d4aa9a
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      README.md

+ 4 - 4
README.md

@@ -8,28 +8,28 @@ jsoniter (json-iterator) is fast and flexible JSON parser available in [Java](ht
 
 Replace
 
-```
+```go
 import "encoding/json"
 json.Marshal(&data)
 ```
 
 with 
 
-```
+```go
 import "github.com/json-iterator/go"
 jsoniter.Marshal(&data)
 ```
 
 Replace
 
-```
+```go
 import "encoding/json"
 json.Unmarshal(input, &data)
 ```
 
 with
 
-```
+```go
 import "github.com/json-iterator/go"
 jsoniter.Unmarshal(input, &data)
 ```