💾 Archived View for space.matthewphillips.info › projects › wiki2gemtext captured on 2024-05-12 at 16:40:47. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
A Golang module that provides the ability to extract a Wikia/Fandom article into gemtext.
go get git.sr.ht/~matthewp/wiki2gemtext
import ( "git.sr.ht/~matthewp/wiki2gemtext" ) func main() { url := "https://sonic.fandom.com/wiki/Sonic_the_Hedgehog" gemtext, error := wiki2gemtext.Transform(url) if err != nil { log.Fatal(err) } fmt.Println(gemtext) }