Create structure for plain links.
All checks were successful
organic-test Build organic-test has succeeded
All checks were successful
organic-test Build organic-test has succeeded
This commit is contained in:
10
src/parser/plain_link.rs
Normal file
10
src/parser/plain_link.rs
Normal 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!();
|
||||
}
|
||||
Reference in New Issue
Block a user