Implement all of regular link except for pathreg.

This commit is contained in:
Tom Alexander
2023-04-23 16:53:02 -04:00
parent 3600f46e3b
commit 8a828195bd
3 changed files with 98 additions and 5 deletions

View File

@@ -2,17 +2,14 @@ use super::source::Source;
#[derive(Debug)]
pub enum Object<'s> {
RegularLink(RegularLink<'s>),
Bold(Bold<'s>),
Italic(Italic<'s>),
Underline(Underline<'s>),
StrikeThrough(StrikeThrough<'s>),
Code(Code<'s>),
Verbatim(Verbatim<'s>),
PlainText(PlainText<'s>),
#[allow(dead_code)]
RegularLink(RegularLink<'s>),
}
#[derive(Debug)]