Add an initial implementation of PlainLink.

This commit is contained in:
Tom Alexander
2023-07-13 19:09:44 -04:00
parent 59f061ecca
commit 5f4e240af0
4 changed files with 83 additions and 4 deletions

View File

@@ -68,6 +68,7 @@ pub fn any_object_except_plain_text<'r, 's>(
parser_with_context!(regular_link)(context),
Object::RegularLink,
),
map(parser_with_context!(plain_link)(context), Object::PlainLink),
))(input)
}