`yaml.load("'''foo'' '")` correctly returns the string `"'foo' "` But if I put a newline in there, the closing quote is lost: ``` javascript > yaml.load("'''foo''\n'") "'foo " ```
yaml.load("'''foo'' '")correctly returns the string"'foo' "But if I put a newline in there, the closing quote is lost: