Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Aug 3, 2023
1 parent f43d961 commit 59d4ebc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions crates/deflist/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ pub struct DefinitionListScanner;

impl BlockRule for DefinitionListScanner {
fn check(state: &mut BlockState) -> Option<()> {

if state.line_indent(state.line) >= state.md.max_indent {
return None;
}
Expand All @@ -85,7 +84,6 @@ impl BlockRule for DefinitionListScanner {
}

fn run(state: &mut BlockState) -> Option<(Node, usize)> {

if state.line_indent(state.line) >= state.md.max_indent {
return None;
}
Expand Down
1 change: 0 additions & 1 deletion crates/footnote/src/definitions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ struct FootnoteDefinitionScanner;

impl FootnoteDefinitionScanner {
fn is_def(state: &mut BlockState) -> Option<(String, usize)> {

if state.line_indent(state.line) >= state.md.max_indent {
return None;
}
Expand Down

0 comments on commit 59d4ebc

Please sign in to comment.