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 { pub struct Emphasis {
italic: bool, italic: bool,
bold: bool, bold: bool,
text: String,
} }
pub struct Blockquote { pub struct Blockquote {
level: u8, level: u8,
text: String,
} }
// TODO: able take care of lists i am too drunk for this tonight // TODO: able take care of lists i am too drunk for this tonight
pub fn parse() {} pub fn parse() {}