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

6 uses

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

	text/template
		exec.go#L583: 		return reflect.ValueOf(word.Text)
		exec.go#L996: 		value.SetString(n.Text)
		exec.go#L1063: 		return reflect.ValueOf(n.Text)