💾 Archived View for space.matthewphillips.info › projects › wiki2gemtext captured on 2024-07-08 at 23:47:59. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2024-05-12)
-=-=-=-=-=-=-
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) }