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

6 uses

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

	text/template
		exec.go#L508: 		return reflect.ValueOf(word.Text)
		exec.go#L907: 		value.SetString(n.Text)
		exec.go#L974: 		return reflect.ValueOf(n.Text)