Document Text/Textf helpers better (#135) Both in the readme and package doc. Fixes #133.
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M gomponents.go → gomponents.go
@@ -4,8 +4,8 @@ // The primary interface is a Node. It describes a function Render, which should render the Node // to the given writer as a string. // // All DOM elements and attributes can be created by using the El and Attr functions. -// The functions Text, Textf, Raw, and Rawf can be used to create text nodes. -// See also helper functions Group, Map, and If. +// The functions Text, Textf, Raw, and Rawf can be used to create text nodes, either HTML-escaped or unescaped. +// See also helper functions Group, Map, and If for mapping data to Nodes and inserting them conditionally. // // For basic HTML elements and attributes, see the package html. // For higher-level HTML components, see the package components.