Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for urlProcessor (0.08 sec)

  1. src/html/template/url.go

    // '&' to '&'.
    func urlNormalizer(args ...any) string {
    	return urlProcessor(true, args...)
    }
    
    // urlProcessor normalizes (when norm is true) or escapes its input to produce
    // a valid hierarchical or opaque URL part.
    func urlProcessor(norm bool, args ...any) string {
    	s, t := stringify(args...)
    	if t == contentTypeURL {
    		norm = true
    	}
    	var b strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top