-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e76ac5a
commit 37e7cc0
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,14 +28,14 @@ go get github.com/elliotwutingfeng/go-fasttld | |
First, build the CLI application. | ||
|
||
```sh | ||
# `cd` to the go-fasttld repository folder first | ||
# `git clone` and `cd` to the go-fasttld repository folder first | ||
make build_cli | ||
``` | ||
|
||
Afterwards, try extracting subcomponents from a URL. | ||
|
||
```sh | ||
# `cd` to the go-fasttld repository folder first | ||
# `git clone` and `cd` to the go-fasttld repository folder first | ||
./dist/fasttld extract https://[email protected]:5000/a/b\?id\=42 | ||
``` | ||
|
||
|
@@ -44,7 +44,7 @@ Afterwards, try extracting subcomponents from a URL. | |
All of the following examples can be found at `examples/demo.go`. To run the demo, use the following command: | ||
|
||
```sh | ||
# `cd` to the go-fasttld repository folder first | ||
# `git clone` and `cd` to the go-fasttld repository folder first | ||
make demo | ||
``` | ||
|
||
|
@@ -221,14 +221,14 @@ if _, err := extractor.Extract(fasttld.URLParams{URL: url}); err != nil { | |
## Testing | ||
|
||
```sh | ||
# `cd` to the go-fasttld repository folder first | ||
# `git clone` and `cd` to the go-fasttld repository folder first | ||
make tests | ||
``` | ||
|
||
## Benchmarks | ||
|
||
```sh | ||
# `cd` to the go-fasttld repository folder first | ||
# `git clone` and `cd` to the go-fasttld repository folder first | ||
make bench | ||
``` | ||
|
||
|