Populate citation reference properties.

This commit is contained in:
Tom Alexander
2023-10-09 14:17:37 -04:00
parent 1ecc3ecf9d
commit c077d34933
3 changed files with 68 additions and 8 deletions

View File

@@ -209,6 +209,9 @@ pub struct Citation<'s> {
#[derive(Debug, PartialEq)]
pub struct CitationReference<'s> {
pub source: &'s str,
pub key: &'s str,
pub prefix: Vec<Object<'s>>,
pub suffix: Vec<Object<'s>>,
}
#[derive(Debug, PartialEq)]