Implement a basic paragraph parser.
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
use super::object::Object;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct Paragraph<'s> {
|
||||
pub source: &'s str,
|
||||
pub children: Vec<Object<'s>>,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user