pub fn parse_info_string(info: &str) -> (String, Option<String>, bool)Expand description
Parses an info string from a fenced code block.
Returns (language, validator, skip) tuple.
ยงExamples
"sql validator=sqlite"โ("sql", Some("sqlite"), false)"rust"โ("rust", None, false)"sql validator=osquery skip"โ("sql", Some("osquery"), true)