added support for parsing lists
All checks were successful
Test the running changes / Test (push) Successful in 32s
All checks were successful
Test the running changes / Test (push) Successful in 32s
This commit is contained in:
@@ -31,4 +31,6 @@ pub enum Block {
|
||||
Code { content: String, lang: String },
|
||||
Quote { inner: Box<Block> },
|
||||
Paragraph { inner: Vec<Inline> },
|
||||
UnorderedList { items: Vec<Block> },
|
||||
OrderedList { items: Vec<Block> },
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user