Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stripTags (0.07 sec)

  1. src/html/template/html.go

    	}
    	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/cmd/link/internal/ld/lib.go

    		var stripArgs = []string{"-S"}
    		if debug_s {
    			// We are generating a binary with symbol table suppressed.
    			// Suppress local symbols. We need to keep dynamically exported
    			// and referenced symbols so the dynamic linker can resolve them.
    			stripArgs = append(stripArgs, "-x")
    		}
    		stripArgs = append(stripArgs, *flagOutfile)
    		if ctxt.Debugvlog != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top