first commit
This commit is contained in:
10
content_functions.go
Normal file
10
content_functions.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user