Migrate to code.rocketnine.space

This commit is contained in:
Trevor Slocum 2021-04-07 20:49:29 -07:00
parent b579de42ff
commit e18a99b437
5 changed files with 11 additions and 9 deletions

View File

@ -1,3 +1,6 @@
1.0.3:
- Migrate to code.rocketnine.space
1.0.3:
- Add hostname option
- Set address bar width to screen width

View File

@ -1,6 +1,5 @@
# gmitohtml
[![GoDoc](https://gitlab.com/tslocum/godoc-static/-/raw/master/badge.svg)](https://docs.rocketnine.space/gitlab.com/tslocum/gmitohtml/pkg/gmitohtml)
[![CI status](https://gitlab.com/tslocum/gmitohtml/badges/master/pipeline.svg)](https://gitlab.com/tslocum/gmitohtml/commits/master)
[![GoDoc](https://code.rocketnine.space/tslocum/godoc-static/-/raw/master/badge.svg)](https://docs.rocketnine.space/code.rocketnine.space/tslocum/gmitohtml/pkg/gmitohtml)
[![Donate](https://img.shields.io/liberapay/receives/rocketnine.space.svg?logo=liberapay)](https://liberapay.com/rocketnine.space)
[Gemini](https://gemini.circumlunar.space) to [HTML](https://en.wikipedia.org/wiki/HTML)
@ -10,7 +9,7 @@ conversion tool and daemon
[**Download gmitohtml**](https://gmitohtml.rocketnine.space/download/?sort=name&order=desc)
gmitohtml is available on Android as [Xenia](https://gitlab.com/tslocum/xenia).
gmitohtml is available on Android as [Xenia](https://code.rocketnine.space/tslocum/xenia).
## Compile
@ -18,14 +17,14 @@ gmitohtml is written in [Go](https://golang.org). Run the following command to
download and build gmitohtml from source.
```bash
go get gitlab.com/tslocum/gmitohtml
go get code.rocketnine.space/tslocum/gmitohtml
```
The resulting binary is available as `~/go/bin/gmitohtml`.
## Configure
See [CONFIGURATION.md](https://gitlab.com/tslocum/gmitohtml/blob/master/CONFIGURATION.md)
See [CONFIGURATION.md](https://code.rocketnine.space/tslocum/twins/src/branch/master/CONFIGURATION.md)
## Usage
@ -43,4 +42,4 @@ gmitohtml < document.gmi
## Support
Please share issues and suggestions [here](https://gitlab.com/tslocum/gmitohtml/issues).
Please share issues and suggestions [here](https://code.rocketnine.space/tslocum/gmitohtml/issues).

View File

@ -8,7 +8,7 @@ import (
"os"
"path"
"gitlab.com/tslocum/gmitohtml/pkg/gmitohtml"
"code.rocketnine.space/tslocum/gmitohtml/pkg/gmitohtml"
"gopkg.in/yaml.v3"
)

2
go.mod
View File

@ -1,4 +1,4 @@
module gitlab.com/tslocum/gmitohtml
module code.rocketnine.space/tslocum/gmitohtml
go 1.15

View File

@ -10,7 +10,7 @@ import (
"os/exec"
"runtime"
"gitlab.com/tslocum/gmitohtml/pkg/gmitohtml"
"code.rocketnine.space/tslocum/gmitohtml/pkg/gmitohtml"
)
func openBrowser(url string) {