text/template/parse.StringNode.Text (field)

6 uses

	text/template/parse (current package)
		node.go#L755: 	Text   string // The string, after quote processing.
		node.go#L759: 	return &StringNode{tr: t, NodeType: NodeString, Pos: pos, Quoted: orig, Text: text}
		node.go#L775: 	return s.tr.newString(s.Pos, s.Quoted, s.Text)

	text/template
		exec.go#L487: 		return reflect.ValueOf(word.Text)
		exec.go#L854: 		value.SetString(n.Text)
		exec.go#L921: 		return reflect.ValueOf(n.Text)