fixup! wip
This commit is contained in:
parent
44a6961beb
commit
d8aba07db3
2 changed files with 5 additions and 2 deletions
|
@ -822,7 +822,7 @@ mod test {
|
||||||
test_block!(
|
test_block!(
|
||||||
concat!(
|
concat!(
|
||||||
" -*- -*-\n",
|
" -*- -*-\n",
|
||||||
"\n", //
|
"\n",
|
||||||
"para", //
|
"para", //
|
||||||
),
|
),
|
||||||
Block::Atom(ThematicBreak),
|
Block::Atom(ThematicBreak),
|
||||||
|
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue