Create structure for angle links.

This commit is contained in:
Tom Alexander
2023-07-13 22:42:42 -04:00
parent 79ac835641
commit ed8b1405db
5 changed files with 55 additions and 0 deletions

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

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