11 lines
333 B
Go
11 lines
333 B
Go
package hugolib
|
|
|
|
import (
|
|
"html/template"
|
|
)
|
|
|
|
// HTML encapsulates a known safe HTML document fragment.
|
|
// It should not be used for HTML from a third-party, or HTML with
|
|
// unclosed tags or comments. The outputs of a sound HTML sanitizer
|
|
// and a template escaped by this package are fine for use with HTML.
|
|
type HTML template.HTML
|