Skip to content

docs(README.md): add syntax highlighting for diff and shell code blocks #530

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ If you have the API you need, please submit your issue [here](https://github.com

# Installation

```
```shell
go get github.com/goccy/go-json
```

# How to use

Replace import statement from `encoding/json` to `github.com/goccy/go-json`

```
```diff
-import "encoding/json"
+import "github.com/goccy/go-json"
```
Expand Down Expand Up @@ -79,7 +79,7 @@ Also, development seems to have already stopped

# Benchmarks

```
```console
$ cd benchmarks
$ go test -bench .
```
Expand Down Expand Up @@ -233,7 +233,7 @@ When encoding a structure like the one above, create a sequence of opcodes like

※ When processing each operation, write the letters on the right.

In addition, each opcode is managed by the following structure (
In addition, each opcode is managed by the following structure (
Pseudo code ).

```go
Expand Down