1
0
Fork 0
mirror of https://git.sr.ht/~adnano/go-gemini synced 2024-04-26 07:35:16 +02:00
go-gemini/query.go
2021-02-23 18:45:58 -05:00

20 lines
502 B
Go

package gemini
import (
"net/url"
"strings"
)
// QueryEscape escapes a string for use in a Gemini URL query.
// It is like url.PathEscape except that it also replaces plus signs
// with their percent-encoded counterpart.
func QueryEscape(query string) string {
return strings.ReplaceAll(url.PathEscape(query), "+", "%2B")
}
// QueryUnescape unescapes a Gemini URL query.
// It is identical to url.PathUnescape.
func QueryUnescape(query string) (string, error) {
return url.PathUnescape(query)
}