Parse application and handle parenthesis in regular links.

This commit is contained in:
Tom Alexander
2023-10-08 09:10:47 -04:00
parent 20a8683894
commit 0030ef4459
2 changed files with 85 additions and 14 deletions

View File

@@ -230,7 +230,7 @@ fn path_plain_end(
enable_search_option: bool,
) -> impl ContextMatcher {
move |context, input: OrgSource<'_>| {
_path_plain_end(
impl_path_plain_end(
context,
input,
starting_parenthesis_depth,
@@ -240,7 +240,7 @@ fn path_plain_end(
}
#[cfg_attr(feature = "tracing", tracing::instrument(ret, level = "debug"))]
fn _path_plain_end<'b, 'g, 'r, 's>(
fn impl_path_plain_end<'b, 'g, 'r, 's>(
context: RefContext<'b, 'g, 'r, 's>,
input: OrgSource<'s>,
starting_parenthesis_depth: BracketDepth,