Remove instrumentation.
This commit is contained in:
parent
e215fd35ca
commit
5b306729f5
@ -134,12 +134,10 @@ pub fn link_end(input: &str) -> Res<&str, TextElement> {
|
|||||||
map(symbol("]"), TextElement::Symbol)(input)
|
map(symbol("]"), TextElement::Symbol)(input)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument]
|
|
||||||
pub fn paragraph_end(input: &str) -> Res<&str, &str> {
|
pub fn paragraph_end(input: &str) -> Res<&str, &str> {
|
||||||
recognize(tuple((map(line_break, TextElement::LineBreak), blank_line)))(input)
|
recognize(tuple((map(line_break, TextElement::LineBreak), blank_line)))(input)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument]
|
|
||||||
pub fn document(input: &str) -> Res<&str, Vec<(Vec<TextElement>, &str)>> {
|
pub fn document(input: &str) -> Res<&str, Vec<(Vec<TextElement>, &str)>> {
|
||||||
let initial_context = ContextTree::new();
|
let initial_context = ContextTree::new();
|
||||||
let paragraph_context = initial_context.with_additional_fail_matcher(¶graph_end);
|
let paragraph_context = initial_context.with_additional_fail_matcher(¶graph_end);
|
||||||
|
@ -45,12 +45,10 @@ fn flat_text_element<'s, 'r>(
|
|||||||
))(i)
|
))(i)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument]
|
|
||||||
fn recognize_bold_end(input: &str) -> Res<&str, &str> {
|
fn recognize_bold_end(input: &str) -> Res<&str, &str> {
|
||||||
recognize(bold_end)(input)
|
recognize(bold_end)(input)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[instrument]
|
|
||||||
fn flat_bold<'s, 'r>(i: &'s str, context: &'r OrgModeContext<'r>) -> Res<&'s str, TextElement<'s>> {
|
fn flat_bold<'s, 'r>(i: &'s str, context: &'r OrgModeContext<'r>) -> Res<&'s str, TextElement<'s>> {
|
||||||
let new_context = context.with_additional_fail_matcher(&recognize_bold_end);
|
let new_context = context.with_additional_fail_matcher(&recognize_bold_end);
|
||||||
let text_element_parser = parser_with_context!(flat_text_element)(&new_context);
|
let text_element_parser = parser_with_context!(flat_text_element)(&new_context);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user