pub trait Highlight: Sized { const LANG: &'static str; fn kind(tokens: &[Self; 2]) -> Kind; }
A type of token that can be highlighted.
Name of the language of this highlighter.
Determine the kind of a token from the current and the previous token.