Fill citation fields.

This commit is contained in:
Tom Alexander
2023-10-09 14:11:15 -04:00
parent ced35e1694
commit 1ecc3ecf9d
2 changed files with 16 additions and 7 deletions

View File

@@ -200,6 +200,10 @@ pub struct FootnoteReference<'s> {
#[derive(Debug, PartialEq)]
pub struct Citation<'s> {
pub source: &'s str,
pub style: Option<&'s str>,
pub prefix: Vec<Object<'s>>,
pub suffix: Vec<Object<'s>>,
pub children: Vec<CitationReference<'s>>,
}
#[derive(Debug, PartialEq)]