Implement the parser for anonymous footnotes.

This commit is contained in:
Tom Alexander
2023-07-19 21:14:09 -04:00
parent 5fb66a586d
commit 6822069c2f
2 changed files with 37 additions and 8 deletions

View File

@@ -121,7 +121,7 @@ pub struct ExportSnippet<'s> {
#[derive(Debug, PartialEq)]
pub struct FootnoteReference<'s> {
pub source: &'s str,
pub label: &'s str,
pub label: Option<&'s str>,
pub definition: Vec<Object<'s>>,
}