update readme and version

This commit is contained in:
Luke Emmet 2020-08-31 23:27:50 +01:00
parent bd708e27c9
commit 2c46ae1bc8
2 changed files with 9 additions and 10 deletions

View File

@ -38,23 +38,22 @@ To strip out cruft, use an HTML sanitiser before passing the content to this app
## Building
Compile using Go.
Retrieve the package using Go get
If you have Go installed, you can install the latest commit using
```
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
## 0.2.6
* Use Go modules
* use update html2gemini having fix for bug whereby preformatted regions sometimes missed closing newlines
## 0.2.5
* new -t flag to emit pretty tables (as preformatted content)

View File

@ -11,7 +11,7 @@ import (
"os"
)
var version = "0.2.5"
var version = "0.2.6"
var (
output = flag.StringP("output", "o", "", "Output path. Otherwise uses stdout")