feat(elements): cleanup and minor refactor
This commit is contained in:
parent
c1465a6d77
commit
9bc260627b
20 changed files with 802 additions and 835 deletions
|
|
@ -23,8 +23,10 @@ mod target;
|
|||
mod timestamp;
|
||||
mod title;
|
||||
|
||||
pub(crate) use block::Block;
|
||||
pub(crate) use emphasis::parse as parse_emphasis;
|
||||
pub(crate) use self::{
|
||||
block::parse_block_element, emphasis::parse_emphasis, keyword::parse_keyword, rule::parse_rule,
|
||||
table::parse_table_el,
|
||||
};
|
||||
|
||||
pub use self::{
|
||||
block::{
|
||||
|
|
@ -45,7 +47,6 @@ pub use self::{
|
|||
macros::Macros,
|
||||
planning::Planning,
|
||||
radio_target::RadioTarget,
|
||||
rule::Rule,
|
||||
snippet::Snippet,
|
||||
table::{Table, TableRow},
|
||||
target::Target,
|
||||
|
|
@ -53,6 +54,8 @@ pub use self::{
|
|||
title::Title,
|
||||
};
|
||||
|
||||
use std::borrow::Cow;
|
||||
|
||||
/// Org-mode element enum
|
||||
#[derive(Debug)]
|
||||
#[cfg_attr(test, derive(PartialEq))]
|
||||
|
|
@ -95,10 +98,10 @@ pub enum Element<'a> {
|
|||
Strike,
|
||||
Italic,
|
||||
Underline,
|
||||
Verbatim { value: &'a str },
|
||||
Code { value: &'a str },
|
||||
Comment { value: &'a str },
|
||||
FixedWidth { value: &'a str },
|
||||
Verbatim { value: Cow<'a, str> },
|
||||
Code { value: Cow<'a, str> },
|
||||
Comment { value: Cow<'a, str> },
|
||||
FixedWidth { value: Cow<'a, str> },
|
||||
Title(Title<'a>),
|
||||
Table(Table<'a>),
|
||||
TableRow(TableRow),
|
||||
|
|
@ -176,6 +179,7 @@ impl_from!(
|
|||
Target,
|
||||
Timestamp,
|
||||
Table,
|
||||
Title,
|
||||
VerseBlock;
|
||||
RadioTarget,
|
||||
List,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue