Add diffing of quote greater blocks.

This commit is contained in:
Tom Alexander 2023-04-15 00:07:20 -04:00
parent 313898ea48
commit 965c5dd15f
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -370,6 +370,11 @@ fn compare_greater_block<'s>(
); );
} }
} }
"quote" => {
if first_child != "quote-block" {
return Err("Quote greater blocks should correspond to a quote-block cell.".into());
}
}
_ => todo!(), _ => todo!(),
} }
let mut child_status = Vec::new(); let mut child_status = Vec::new();