Merge branch 'additional_detects'
This commit is contained in:
commit
7e57285ea7
@ -0,0 +1,6 @@
|
|||||||
|
%%(foo
|
||||||
|
)
|
||||||
|
|
||||||
|
%%(bar ; baz
|
||||||
|
|
||||||
|
lorem
|
@ -67,6 +67,17 @@ fn comment_line<'b, 'g, 'r, 's>(
|
|||||||
Ok((remaining, source))
|
Ok((remaining, source))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
||||||
|
pub fn detect_comment<'s>(input: OrgSource<'s>) -> Res<OrgSource<'s>, ()> {
|
||||||
|
tuple((
|
||||||
|
start_of_line,
|
||||||
|
space0,
|
||||||
|
tag("#"),
|
||||||
|
alt((tag(" "), line_ending, eof)),
|
||||||
|
))(input)?;
|
||||||
|
Ok((input, ()))
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
@ -1,16 +1,11 @@
|
|||||||
use nom::branch::alt;
|
use nom::branch::alt;
|
||||||
|
use nom::bytes::complete::is_not;
|
||||||
use nom::bytes::complete::tag;
|
use nom::bytes::complete::tag;
|
||||||
use nom::character::complete::anychar;
|
|
||||||
use nom::character::complete::line_ending;
|
use nom::character::complete::line_ending;
|
||||||
use nom::character::complete::space0;
|
|
||||||
use nom::combinator::eof;
|
use nom::combinator::eof;
|
||||||
use nom::combinator::opt;
|
|
||||||
use nom::combinator::recognize;
|
|
||||||
use nom::multi::many_till;
|
|
||||||
use nom::sequence::tuple;
|
use nom::sequence::tuple;
|
||||||
|
|
||||||
use super::org_source::OrgSource;
|
use super::org_source::OrgSource;
|
||||||
use super::sexp::sexp;
|
|
||||||
use crate::context::RefContext;
|
use crate::context::RefContext;
|
||||||
use crate::error::Res;
|
use crate::error::Res;
|
||||||
use crate::parser::util::get_consumed;
|
use crate::parser::util::get_consumed;
|
||||||
@ -23,17 +18,9 @@ pub fn diary_sexp<'b, 'g, 'r, 's>(
|
|||||||
input: OrgSource<'s>,
|
input: OrgSource<'s>,
|
||||||
) -> Res<OrgSource<'s>, DiarySexp<'s>> {
|
) -> Res<OrgSource<'s>, DiarySexp<'s>> {
|
||||||
start_of_line(input)?;
|
start_of_line(input)?;
|
||||||
let (remaining, _leading_whitespace) = space0(input)?;
|
let (remaining, _clock) = tag("%%(")(input)?;
|
||||||
let (remaining, _clock) = tag("%%")(remaining)?;
|
let (remaining, _contents) = is_not("\r\n")(remaining)?;
|
||||||
let (remaining, _gap_whitespace) = space0(remaining)?;
|
let (remaining, _eol) = alt((line_ending, eof))(remaining)?;
|
||||||
let (remaining, _sexp) = recognize(sexp)(remaining)?;
|
|
||||||
let (remaining, _trailing_comment) = opt(tuple((
|
|
||||||
space0,
|
|
||||||
tag(";"),
|
|
||||||
many_till(anychar, alt((line_ending, eof))),
|
|
||||||
)))(remaining)?;
|
|
||||||
let (remaining, _trailing_whitespace) =
|
|
||||||
recognize(tuple((space0, alt((line_ending, eof)))))(remaining)?;
|
|
||||||
|
|
||||||
let source = get_consumed(input, remaining);
|
let source = get_consumed(input, remaining);
|
||||||
Ok((
|
Ok((
|
||||||
@ -43,3 +30,9 @@ pub fn diary_sexp<'b, 'g, 'r, 's>(
|
|||||||
},
|
},
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
||||||
|
pub fn detect_diary_sexp<'s>(input: OrgSource<'s>) -> Res<OrgSource<'s>, ()> {
|
||||||
|
tuple((start_of_line, tag("%%(")))(input)?;
|
||||||
|
Ok((input, ()))
|
||||||
|
}
|
||||||
|
@ -4,10 +4,14 @@ use nom::multi::many0;
|
|||||||
|
|
||||||
use super::clock::clock;
|
use super::clock::clock;
|
||||||
use super::comment::comment;
|
use super::comment::comment;
|
||||||
|
use super::comment::detect_comment;
|
||||||
|
use super::diary_sexp::detect_diary_sexp;
|
||||||
use super::diary_sexp::diary_sexp;
|
use super::diary_sexp::diary_sexp;
|
||||||
use super::drawer::drawer;
|
use super::drawer::drawer;
|
||||||
use super::dynamic_block::dynamic_block;
|
use super::dynamic_block::dynamic_block;
|
||||||
|
use super::fixed_width_area::detect_fixed_width_area;
|
||||||
use super::fixed_width_area::fixed_width_area;
|
use super::fixed_width_area::fixed_width_area;
|
||||||
|
use super::footnote_definition::detect_footnote_definition;
|
||||||
use super::footnote_definition::footnote_definition;
|
use super::footnote_definition::footnote_definition;
|
||||||
use super::greater_block::greater_block;
|
use super::greater_block::greater_block;
|
||||||
use super::horizontal_rule::horizontal_rule;
|
use super::horizontal_rule::horizontal_rule;
|
||||||
@ -24,6 +28,7 @@ use super::org_source::OrgSource;
|
|||||||
use super::paragraph::paragraph;
|
use super::paragraph::paragraph;
|
||||||
use super::plain_list::detect_plain_list;
|
use super::plain_list::detect_plain_list;
|
||||||
use super::plain_list::plain_list;
|
use super::plain_list::plain_list;
|
||||||
|
use super::table::detect_table;
|
||||||
use super::util::get_consumed;
|
use super::util::get_consumed;
|
||||||
use super::util::maybe_consume_trailing_whitespace_if_not_exiting;
|
use super::util::maybe_consume_trailing_whitespace_if_not_exiting;
|
||||||
use crate::context::parser_with_context;
|
use crate::context::parser_with_context;
|
||||||
@ -135,7 +140,16 @@ fn _detect_element<'b, 'g, 'r, 's>(
|
|||||||
input: OrgSource<'s>,
|
input: OrgSource<'s>,
|
||||||
can_be_paragraph: bool,
|
can_be_paragraph: bool,
|
||||||
) -> Res<OrgSource<'s>, ()> {
|
) -> Res<OrgSource<'s>, ()> {
|
||||||
if detect_plain_list(input).is_ok() {
|
if alt((
|
||||||
|
detect_plain_list,
|
||||||
|
detect_footnote_definition,
|
||||||
|
detect_diary_sexp,
|
||||||
|
detect_comment,
|
||||||
|
detect_fixed_width_area,
|
||||||
|
detect_table,
|
||||||
|
))(input)
|
||||||
|
.is_ok()
|
||||||
|
{
|
||||||
return Ok((input, ()));
|
return Ok((input, ()));
|
||||||
}
|
}
|
||||||
if _element(context, input, can_be_paragraph).is_ok() {
|
if _element(context, input, can_be_paragraph).is_ok() {
|
||||||
|
@ -47,7 +47,7 @@ fn fixed_width_area_line<'b, 'g, 'r, 's>(
|
|||||||
) -> Res<OrgSource<'s>, OrgSource<'s>> {
|
) -> Res<OrgSource<'s>, OrgSource<'s>> {
|
||||||
start_of_line(input)?;
|
start_of_line(input)?;
|
||||||
let (remaining, _indent) = space0(input)?;
|
let (remaining, _indent) = space0(input)?;
|
||||||
let (remaining, (_hash, _leading_whitespace_and_content, _line_ending)) = tuple((
|
let (remaining, (_colon, _leading_whitespace_and_content, _line_ending)) = tuple((
|
||||||
tag(":"),
|
tag(":"),
|
||||||
opt(tuple((space1, is_not("\r\n")))),
|
opt(tuple((space1, is_not("\r\n")))),
|
||||||
alt((line_ending, eof)),
|
alt((line_ending, eof)),
|
||||||
@ -55,3 +55,14 @@ fn fixed_width_area_line<'b, 'g, 'r, 's>(
|
|||||||
let source = get_consumed(input, remaining);
|
let source = get_consumed(input, remaining);
|
||||||
Ok((remaining, source))
|
Ok((remaining, source))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
||||||
|
pub fn detect_fixed_width_area<'s>(input: OrgSource<'s>) -> Res<OrgSource<'s>, ()> {
|
||||||
|
tuple((
|
||||||
|
start_of_line,
|
||||||
|
space0,
|
||||||
|
tag(":"),
|
||||||
|
alt((tag(" "), line_ending, eof)),
|
||||||
|
))(input)?;
|
||||||
|
Ok((input, ()))
|
||||||
|
}
|
||||||
|
@ -122,7 +122,7 @@ fn footnote_definition_end<'b, 'g, 'r, 's>(
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
||||||
fn detect_footnote_definition<'s>(input: OrgSource<'s>) -> Res<OrgSource<'s>, ()> {
|
pub fn detect_footnote_definition<'s>(input: OrgSource<'s>) -> Res<OrgSource<'s>, ()> {
|
||||||
tuple((start_of_line, tag_no_case("[fn:"), label, tag("]")))(input)?;
|
tuple((start_of_line, tag_no_case("[fn:"), label, tag("]")))(input)?;
|
||||||
Ok((input, ()))
|
Ok((input, ()))
|
||||||
}
|
}
|
||||||
|
@ -73,6 +73,12 @@ pub fn org_mode_table<'b, 'g, 'r, 's>(
|
|||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
||||||
|
pub fn detect_table<'s>(input: OrgSource<'s>) -> Res<OrgSource<'s>, ()> {
|
||||||
|
tuple((start_of_line, space0, tag("|")))(input)?;
|
||||||
|
Ok((input, ()))
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
|
||||||
fn table_end<'b, 'g, 'r, 's>(
|
fn table_end<'b, 'g, 'r, 's>(
|
||||||
_context: RefContext<'b, 'g, 'r, 's>,
|
_context: RefContext<'b, 'g, 'r, 's>,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user