Trait cmark_syntax::Highlight [−][src]
pub trait Highlight: Sized + for<'a> Logos<'a, Source = str> {
const LANG: &'static str;
const START: Self;
fn kind(tokens: &[Self; 2]) -> Kind;
}Expand description
A type of token that can be highlighted.
