Compare inline source block properties.

This commit is contained in:
Tom Alexander
2023-10-09 19:31:57 -04:00
parent 69500837f2
commit 4bc2f48738
4 changed files with 48 additions and 10 deletions

View File

@@ -227,6 +227,9 @@ pub struct InlineBabelCall<'s> {
#[derive(Debug, PartialEq)]
pub struct InlineSourceBlock<'s> {
pub source: &'s str,
pub language: &'s str,
pub parameters: Option<&'s str>,
pub value: &'s str,
}
#[derive(Debug, PartialEq)]