pub fn parse_callouts(content: &str) -> Vec<Callout>Expand description
Parse callouts from content (header only, no multi-line content).
ยงExample
use turbovault_parser::parse_callouts;
let callouts = parse_callouts("> [!NOTE] Title\n> Content");
assert_eq!(callouts.len(), 1);