From 4ad7e2bf3ee39952b6bcbf7524a4c905099074dd Mon Sep 17 00:00:00 2001 From: Noah Hellman Date: Sun, 22 Jan 2023 10:49:24 +0100 Subject: [PATCH] fixup! a931e71100663ece89f3c8dbfa67c02414d40436 --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 53874a9..8dd5237 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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