First attempt at text markup.

This commit is contained in:
Tom Alexander
2023-04-22 19:34:13 -04:00
parent 0b3f414ecf
commit 9a3bde0d80
4 changed files with 76 additions and 41 deletions

View File

@@ -14,6 +14,7 @@ pub enum Object<'s> {
#[derive(Debug)]
pub struct TextMarkup<'s> {
pub source: &'s str,
pub children: Vec<Object<'s>>,
}
#[derive(Debug)]