added text fields to blockquote and empasis

This commit is contained in:
sam lovelace 2021-11-28 03:25:55 +00:00
parent 9d87740323
commit fb922193b1

View file

@ -18,12 +18,16 @@ pub struct CodeBlock {
pub struct Emphasis {
italic: bool,
bold: bool,
text: String,
}
pub struct Blockquote {
level: u8,
text: String,
}
// TODO: able take care of lists i am too drunk for this tonight
pub fn parse() {}