Lines Matching full:template
9 "html/template"
32 t, err := template.New("webpage").Parse(tpl)
89 t, err := template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
101 fmt.Println(template.HTMLEscapeString(s))
102 template.HTMLEscape(os.Stdout, []byte(s))
104 fmt.Println(template.HTMLEscaper(v...))
106 fmt.Println(template.JSEscapeString(s))
107 template.JSEscape(os.Stdout, []byte(s))
109 fmt.Println(template.JSEscaper(v...))
111 fmt.Println(template.URLQueryEscaper(v...))