fn map_links<'e>(
events: impl Iterator<Item = (Event<'e>, Range<usize>)>,
callback: impl Fn(&str, &str, Range<usize>, LinkType) -> (Option<LinkType>, String, String),
) -> impl Iterator<Item = Event<'e>>Expand description
Rewrites a markdown document, applying ‘callback’ to each link.