func github.com/yuin/goldmark/util.EscapeHTML

11 uses

	github.com/yuin/goldmark/util (current package)
		util.go#L545: func EscapeHTML(v []byte) []byte {

	github.com/yuin/goldmark/extension
		footnote.go#L528: 			_, _ = w.Write(util.EscapeHTML(applyFootnoteTemplate(r.FootnoteConfig.LinkTitle, n.Index, n.RefCount)))
		footnote.go#L550: 			_, _ = w.Write(util.EscapeHTML(applyFootnoteTemplate(r.FootnoteConfig.BacklinkTitle, n.Index, n.RefCount)))

	github.com/yuin/goldmark/renderer/html
		html.go#L450: 	_, _ = w.Write(util.EscapeHTML(util.URLEscape(url, false)))
		html.go#L458: 	_, _ = w.Write(util.EscapeHTML(label))
		html.go#L522: 			_, _ = w.Write(util.EscapeHTML(util.URLEscape(n.Destination, true)))
		html.go#L565: 		_, _ = w.Write(util.EscapeHTML(util.URLEscape(n.Destination, true)))
		html.go#L568: 	_, _ = w.Write(util.EscapeHTML(n.Text(source)))
		html.go#L659: 		_, _ = w.Write(util.EscapeHTML(attr.Value.([]byte)))

	github.com/yuin/goldmark-emoji
		emoji.go#L291: 		fmt.Fprintf(w, `<span title="%s">:%s:</span>`, util.EscapeHTML(util.StringToReadOnlyBytes(node.Value.Name)), node.ShortName)
		emoji.go#L315: 		fmt.Fprintf(w, r.TwemojiTemplate, util.EscapeHTML(util.StringToReadOnlyBytes(node.Value.Name)), strings.Join(values, "-"), s)