#[derive(Debug, PartialEq, Clone)]
pub enum Token {
EOF,
Heading {
depth: i8,
text: String,
},
Paragraph {
text: String,
},
Code {
lang: String,
text: String,
},
ListStart {
ordered: bool,
},
ListItem {
text: String,
task: bool,
checked: bool,
},
ListEnd,
BlockquoteStart,
BlockquoteEnd,
}