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 ## 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)

View File

@ -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")