Hi, I am using ``` YAML.write_file(info_file, dict) ``` to write the dict which is something like ``` OrderedCollections.OrderedDict{String, Any}("type" => "report", "ref" => "avResearchProgramFIGRA",... ``` to a yaml `info_file`. I get something like ``` type: "report" ref: "avResearchProgramFIGRA" ... ``` So far this is fine, but I would like to neglect the `quotes` around the strings. Is this somehow possible? Thank you!