Compare properties for inline babel calls.

This commit is contained in:
Tom Alexander
2023-10-09 19:21:58 -04:00
parent 53b9deff10
commit 6bc6fdc87b
4 changed files with 57 additions and 5 deletions

View File

@@ -217,6 +217,11 @@ pub struct CitationReference<'s> {
#[derive(Debug, PartialEq)]
pub struct InlineBabelCall<'s> {
pub source: &'s str,
pub value: &'s str,
pub call: &'s str,
pub inside_header: Option<&'s str>,
pub arguments: Option<&'s str>,
pub end_header: Option<&'s str>,
}
#[derive(Debug, PartialEq)]