Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for htmlReplacer (0.15 sec)

  1. src/html/template/html.go

    		return filterFailsafe
    	}
    	if t == contentTypeHTML {
    		return htmlReplacer(stripTags(s), htmlNospaceNormReplacementTable, false)
    	}
    	return htmlReplacer(s, htmlNospaceReplacementTable, false)
    }
    
    // attrEscaper escapes for inclusion in quoted attribute values.
    func attrEscaper(args ...any) string {
    	s, t := stringify(args...)
    	if t == contentTypeHTML {
    		return htmlReplacer(stripTags(s), htmlNormReplacementTable, true)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. src/net/http/fs.go

    		// part of the URL path, and not indicate the start of a query
    		// string or fragment.
    		url := url.URL{Path: name}
    		fmt.Fprintf(w, "<a href=\"%s\">%s</a>\n", url.String(), htmlReplacer.Replace(name))
    	}
    	fmt.Fprintf(w, "</pre>\n")
    }
    
    // serveError serves an error from ServeFile, ServeFileFS, and ServeContent.
    // Because those can all be configured by the caller by setting headers like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. src/net/http/server.go

    		fmt.Fprintln(w, body)
    	}
    }
    
    var htmlReplacer = strings.NewReplacer(
    	"&", "&amp;",
    	"<", "&lt;",
    	">", "&gt;",
    	// "&#34;" is shorter than "&quot;".
    	`"`, "&#34;",
    	// "&#39;" is shorter than "&apos;" and apos was not in HTML until HTML5.
    	"'", "&#39;",
    )
    
    func htmlEscape(s string) string {
    	return htmlReplacer.Replace(s)
    }
    
    // Redirect to a fixed URL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top