mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 13:30:26 +00:00
4e8dae3c80
My view on this: it's too restrictive for Gemini. If you want to host something in Gemini, you can't just dumb your content down. And Mycomarkup is too robust for Gemini—images, tables and inline formatting can't really be adapted to Gemtext.
18 lines
538 B
Modula-2
18 lines
538 B
Modula-2
module github.com/bouncepaw/mycorrhiza
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/bouncepaw/mycomarkup v0.5.5
|
|
github.com/go-ini/ini v1.62.0
|
|
github.com/gorilla/feeds v1.1.1
|
|
github.com/kr/pretty v0.2.1 // indirect
|
|
github.com/smartystreets/goconvey v1.6.4 // indirect
|
|
github.com/valyala/quicktemplate v1.6.3
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
|
gopkg.in/ini.v1 v1.62.0 // indirect
|
|
)
|
|
|
|
// Use this trick for testing of mycomarkup:
|
|
// replace github.com/bouncepaw/mycomarkup v0.5.5 => "/Users/bouncepaw/GolandProjects/mycomarkup"
|