parse_fragment_YAML.Rd
This is essentially a wrapper for yaml::yaml.load().
yaml::yaml.load()
parse_fragment_YAML(x)
The fragment.
The object with the results.
### Parse some YAML bookmark::parse_fragment_YAML(" simpleObject: field1: some content field2: more content " ); #> $simpleObject #> $simpleObject$field1 #> [1] "some content" #> #> $simpleObject$field2 #> [1] "more content" #> #>