Create structure for line breaks.

This commit is contained in:
Tom Alexander
2023-07-21 23:48:37 -04:00
parent 6b82214ec3
commit 4d114206ef
5 changed files with 54 additions and 0 deletions

13
src/parser/line_break.rs Normal file
View File

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