organic/src/parser/plain_link.rs

11 lines
317 B
Rust
Raw Normal View History

2023-07-13 18:18:07 -04:00
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!();
}