From 2c46ae1bc8740fa70091cd628cbfed21bdf7b6d2 Mon Sep 17 00:00:00 2001 From: Luke Emmet Date: Mon, 31 Aug 2020 23:27:50 +0100 Subject: [PATCH] update readme and version --- README.md | 17 ++++++++--------- html2gmi.go | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 536b7d8..9077c6e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/html2gmi.go b/html2gmi.go index ad30cca..a175039 100644 --- a/html2gmi.go +++ b/html2gmi.go @@ -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")