Create structure for plain links.
All checks were successful
organic-test Build organic-test has succeeded

This commit is contained in:
Tom Alexander
2023-07-13 18:18:07 -04:00
parent 357b6f25b7
commit dcec5c490a
5 changed files with 53 additions and 0 deletions

10
src/parser/plain_link.rs Normal file
View File

@@ -0,0 +1,10 @@
use super::Context;
use crate::error::Res;
use crate::parser::object::PlainLink;
use crate::parser::util::not_yet_implemented;
#[tracing::instrument(ret, level = "debug")]
pub fn plain_link<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s str, PlainLink<'s>> {
not_yet_implemented()?;
todo!();
}