From: alirezaarzehgar Date: Wed, 19 Feb 2025 16:17:14 +0000 (+0330) Subject: html/template: add available godoc link X-Git-Tag: go1.25rc1~978 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a2c959fe97e094f337f46e529e9e7d1a34a7c26a;p=gostls13.git 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 --- 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, '&')