Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _html_template_urlnormalizer (0.19 sec)

  1. src/html/template/escape.go

    	"_html_template_urlescaper": "urlquery",
    	// These two functions are not actually equivalent; urlquery is stricter as it
    	// escapes reserved characters (e.g. '#'), while _html_template_urlnormalizer
    	// does not. It is therefore only safe to replace _html_template_urlnormalizer
    	// with urlquery (this happens in ensurePipelineContains), but not the otherI've
    	// way around. We keep this entry around to preserve the behavior of templates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. src/html/template/escape_test.go

    			[]string{"_html_template_urlfilter", "_html_template_urlnormalizer"},
    		},
    		{
    			"{{.X | urlquery}}",
    			".X | urlquery | _html_template_urlfilter | _html_template_cssescaper",
    			[]string{"_html_template_urlfilter", "_html_template_cssescaper"},
    		},
    		{
    			"{{.X | urlquery}}",
    			".X | urlquery",
    			[]string{"_html_template_urlnormalizer"},
    		},
    		{
    			"{{.X | urlquery}}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
Back to top