added text fields to blockquote and empasis
This commit is contained in:
parent
9d87740323
commit
fb922193b1
|
@ -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() {}
|
||||||
|
|
Loading…
Reference in a new issue