organic/src/parser/footnote_reference.rs

14 lines
343 B
Rust
Raw Normal View History

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!()
}