fixup! a931e71100663ece89f3c8dbfa67c02414d40436
This commit is contained in:
parent
1f71df82ef
commit
4ad7e2bf3e
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue