fixup! a931e71100663ece89f3c8dbfa67c02414d40436

This commit is contained in:
Noah Hellman 2023-01-22 10:49:24 +01:00
parent 1f71df82ef
commit 4ad7e2bf3e

View file

@ -38,6 +38,8 @@ pub enum Container<'s> {
ListItem,
/// An item of a task list, either checked or unchecked.
TaskListItem { checked: bool },
/// A description list element.
DescriptionList,
/// Details describing a term within a description list.
DescriptionDetails,
/// A footnote definition.
@ -100,6 +102,7 @@ impl<'s> Container<'s> {
| Self::List(..)
| Self::ListItem
| Self::TaskListItem { .. }
| Self::DescriptionList
| Self::DescriptionDetails
| Self::Footnote { .. }
| Self::Table
@ -136,6 +139,7 @@ impl<'s> Container<'s> {
| Self::List(..)
| Self::ListItem
| Self::TaskListItem { .. }
| Self::DescriptionList
| Self::DescriptionDetails
| Self::Footnote { .. }
| Self::Table