Function marked_yaml::parse_yaml_with_options

source ·
pub fn parse_yaml_with_options<S>(
    source: usize,
    yaml: S,
    options: LoaderOptions
) -> Result<Node, LoadError>
where S: AsRef<str>,
Expand description

Parse YAML from a string and return a Node representing the content. Takes an additional LoaderOptions struct to control the behavior of the loader.

See parse_yaml for more information.