update readme and version
This commit is contained in:
parent
bd708e27c9
commit
2c46ae1bc8
17
README.md
17
README.md
@ -38,23 +38,22 @@ To strip out cruft, use an HTML sanitiser before passing the content to this app
|
|||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
Compile using Go.
|
If you have Go installed, you can install the latest commit using
|
||||||
|
|
||||||
Retrieve the package using Go get
|
|
||||||
|
|
||||||
```
|
```
|
||||||
go get github.com/LukeEmmet/html2gmi
|
go env -w GO111MODULE=on
|
||||||
|
go get github.com/LukeEmmet/html2gmi@master
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Build the binary using Go build
|
|
||||||
|
|
||||||
```
|
|
||||||
go build github.com/LukeEmmet/html2gmi
|
|
||||||
```
|
|
||||||
|
|
||||||
# History
|
# History
|
||||||
|
|
||||||
|
## 0.2.6
|
||||||
|
|
||||||
|
* Use Go modules
|
||||||
|
* use update html2gemini having fix for bug whereby preformatted regions sometimes missed closing newlines
|
||||||
|
|
||||||
## 0.2.5
|
## 0.2.5
|
||||||
|
|
||||||
* new -t flag to emit pretty tables (as preformatted content)
|
* new -t flag to emit pretty tables (as preformatted content)
|
||||||
|
@ -11,7 +11,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
var version = "0.2.5"
|
var version = "0.2.6"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
output = flag.StringP("output", "o", "", "Output path. Otherwise uses stdout")
|
output = flag.StringP("output", "o", "", "Output path. Otherwise uses stdout")
|
||||||
|
Loading…
Reference in New Issue
Block a user