Hi Is there a high level method to parse a string into a `svg::Document` ? something like ```rust let svg = r#" <svg .... </svg> "#; let document = svg::Document::from_str(&my_svg).unwrap(); // would return a Result<Document, ParseError> ```