diff --git a/doc/effective_go.html b/doc/effective_go.html index 1540baac61c..ec2973a07cb 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2993,12 +2993,13 @@ from data items passed to templ.Execute, in this case the form value. Within the template text (templateStr), double-brace-delimited pieces denote template actions. -The piece from the executes only if the value of the current data item, called ., +The piece from the {{if .}} +to {{end}} executes only if the value of the current data item, called . (dot), is non-empty. That is, when the string is empty, this piece of the template is suppressed.

-The snippet 0 says to process the data with the function +The snippet {{urlquery .}} says to process the data with the function urlquery, which sanitizes the query string for safe display on the web page.

diff --git a/doc/effective_go.tmpl b/doc/effective_go.tmpl index 850ba3aeb59..98ef6428653 100644 --- a/doc/effective_go.tmpl +++ b/doc/effective_go.tmpl @@ -2945,13 +2945,13 @@ from data items passed to templ.Execute, in this case the form value. Within the template text (templateStr), double-brace-delimited pieces denote template actions. -The piece from the {{if .}} -to {{end}} executes only if the value of the current data item, called ., +The piece from the {{html "{{if .}}"}} +to {{html "{{end}}"}} executes only if the value of the current data item, called . (dot), is non-empty. That is, when the string is empty, this piece of the template is suppressed.

-The snippet {{urlquery .}} says to process the data with the function +The snippet {{html "{{urlquery .}}"}} says to process the data with the function urlquery, which sanitizes the query string for safe display on the web page.