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!( test_block!(
concat!( concat!(
" -*- -*-\n", " -*- -*-\n",
"\n", // "\n",
"para", // "para", //
), ),
Block::Atom(ThematicBreak), Block::Atom(ThematicBreak),

View file

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