first commit

This commit is contained in:
2020-01-15 13:35:30 +01:00
commit c9cd268366
15 changed files with 1884 additions and 0 deletions

10
content_functions.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import "strings"
func getImageURL(testStyleURL string) (string, error) {
genURL := strings.ReplaceAll(testStyleURL, `\3a `, `:`)
genURL = strings.ReplaceAll(genURL, `\3d `, `=`)
genURL = strings.ReplaceAll(genURL, `\26 `, `&`)
return genURL, nil
}