added support for parsing lists
All checks were successful
Test the running changes / Test (push) Successful in 32s

This commit is contained in:
2025-12-26 16:36:57 +02:00
parent 03b5360ec5
commit 34304546ad
3 changed files with 121 additions and 2 deletions

View File

@@ -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> },
}