pub trait URLRewriter: RefUnwindSafe + Send + Sync { // Required method fn to_html(&self, url: &str) -> String; }
Trait for link and image URL rewrite extensions.
Converts the given URL from Markdown to its representation when output as HTML.