From a2c959fe97e094f337f46e529e9e7d1a34a7c26a Mon Sep 17 00:00:00 2001 From: alirezaarzehgar Date: Wed, 19 Feb 2025 19:47:14 +0330 Subject: [PATCH] html/template: add available godoc link Change-Id: I50404dbf0f10ee59007bd0dc5353f38e056a0430 Reviewed-on: https://go-review.googlesource.com/c/go/+/650655 Reviewed-by: Michael Knyszek LUCI-TryBot-Result: Go LUCI Auto-Submit: Ian Lance Taylor Reviewed-by: Ian Lance Taylor --- src/html/escape.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/html/escape.go b/src/html/escape.go index b718c247ff..d66a3e4837 100644 --- a/src/html/escape.go +++ b/src/html/escape.go @@ -173,16 +173,16 @@ var htmlEscaper = strings.NewReplacer( // EscapeString escapes special characters like "<" to become "<". It // escapes only five such characters: <, >, &, ' and ". -// UnescapeString(EscapeString(s)) == s always holds, but the converse isn't +// [UnescapeString](EscapeString(s)) == s always holds, but the converse isn't // always true. func EscapeString(s string) string { return htmlEscaper.Replace(s) } // UnescapeString unescapes entities like "<" to become "<". It unescapes a -// larger range of entities than EscapeString escapes. For example, "á" +// larger range of entities than [EscapeString] escapes. For example, "á" // unescapes to "á", as does "á" and "á". -// UnescapeString(EscapeString(s)) == s always holds, but the converse isn't +// UnescapeString([EscapeString](s)) == s always holds, but the converse isn't // always true. func UnescapeString(s string) string { i := strings.IndexByte(s, '&') -- 2.51.0