all repos — htmlformat @ 91ad1b65896167cf2f362e68e7faa44fc33ae8ad

Go package and CLI tool used to format HTML

rename module

Alan Pearce
commit

91ad1b65896167cf2f362e68e7faa44fc33ae8ad

parent

9f6e7a8af5db4d01055aa754ec4afbbf22c4d3dd

4 files changed, 4 insertions(+), 4 deletions(-)

changed files
M README.mdREADME.md
@@ -15,7 +15,7 @@
To use the CLI, you can install with Go > 1.20. ``` -go install github.com/a-h/htmlformat/cmd/htmlformat@latest +go install alin.ovh/htmlformat/cmd/htmlformat@latest ``` ## Usage
M cmd/htmlformat/main.gocmd/htmlformat/main.go
@@ -5,7 +5,7 @@ "flag"
"log" "os" - "github.com/alanpearce/htmlformat" + "alin.ovh/htmlformat" ) var parseDocumentFlag = flag.Bool("document", false, "Set to true to parse a whole document")
M format.goformat.go
@@ -1,4 +1,4 @@
-package htmlformat +package htmlformat // import alin.ovh/htmlformat import ( "bufio"
M go.modgo.mod
@@ -1,4 +1,4 @@
-module github.com/alanpearce/htmlformat +module alin.ovh/htmlformat go 1.20