Create structure for footnote references.

This commit is contained in:
Tom Alexander
2023-07-19 18:56:46 -04:00
parent c1a99a03f8
commit 9c2eb3b122
6 changed files with 68 additions and 1 deletions

View File

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