const gopkg.in/yaml.v2.yaml_STR_TAG

8 uses

	gopkg.in/yaml.v2 (current package)
		decode.go#L415: 		tag = yaml_STR_TAG
		encode.go#L321: 		canUsePlain = rtag == yaml_STR_TAG && !isBase60Float(s)
		resolve.go#L78: 	case "", yaml_STR_TAG, yaml_BOOL_TAG, yaml_INT_TAG, yaml_FLOAT_TAG, yaml_NULL_TAG, yaml_TIMESTAMP_TAG:
		resolve.go#L93: 		case "", rtag, yaml_STR_TAG, yaml_BINARY_TAG:
		resolve.go#L118: 	if hint != 0 && tag != yaml_STR_TAG && tag != yaml_BINARY_TAG {
		resolve.go#L196: 	return yaml_STR_TAG, in
		yamlh.go#L311: 	yaml_STR_TAG       = "tag:yaml.org,2002:str"       // The tag !!str for string values.
		yamlh.go#L323: 	yaml_DEFAULT_SCALAR_TAG   = yaml_STR_TAG // The default scalar tag is !!str.