mirror of
https://git.sr.ht/~adnano/go-gemini
synced 2024-11-10 00:32:11 +01:00
18 lines
472 B
Go
18 lines
472 B
Go
package gemini
|
|
|
|
import (
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
// QueryEscape properly 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 is identical to url.PathUnescape.
|
|
func QueryUnescape(query string) (string, error) {
|
|
return url.PathUnescape(query)
|
|
}
|