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