fixup! wip

This commit is contained in:
Noah Hellman 2023-01-21 11:14:00 +01:00
parent 44a6961beb
commit d8aba07db3
2 changed files with 5 additions and 2 deletions

View file

@ -822,7 +822,7 @@ mod test {
test_block!(
concat!(
" -*- -*-\n",
"\n", //
"\n",
"para", //
),
Block::Atom(ThematicBreak),

View file

@ -182,7 +182,10 @@ pub enum LinkType {
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum List {
Unordered,
Ordered { kind: OrderedListNumbering, start: u32 },
Ordered {
num: OrderedListNumbering,
start: u32,
},
Description,
Task,
}