Home | History | Annotate | Download | only in template

Lines Matching refs:HTML

6 Package template (html/template) implements data-driven templates for
7 generating HTML output safe against code injection. It provides the
9 text/template whenever the output is HTML.
18 to parse and execute HTML templates safely.
27 HTML templates treat data values as plain text which should be encoded so they
28 can be safely embedded in an HTML document. The escaping is contextual, so
46 but the contextual autoescaping in html/template
48 import "html/template"
53 produces safe, escaped HTML output
60 This package understands HTML, CSS, JavaScript, and URIs. It adds sanitizing
68 <a href="/search?q={{. | urlquery}}">{{. | html}}</a>
145 Types HTML, JS, URL, and others from content.go can carry safe content that is
154 tmpl.Execute(out, template.HTML(`<b>World</b>`))
169 https://rawgit.com/mikesamuel/sanitized-jquery-templates/trunk/safetemplate.html#problem_definition defines "safe" as used by this package.
176 "... when a template author writes an HTML tag in a safe templating language,
187 "A developer (or code reviewer) familiar with HTML, CSS, and JavaScript, who