pub trait InlineCodeHandler: Send + Sync {
// Required method
fn render(&self, code: &str) -> Option<String>;
}Expand description
A handler for rendering inline code spans.
This allows customizing how inline code is rendered, for example
to transform r[rule.id] references into clickable links.