diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-13 11:26:22 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-13 11:26:22 +0200 |
commit | fb185e801e7d2002948d0b4e91ee06767e13ed00 (patch) | |
tree | 8e0ea5d1b92e794cfa7efbcab7b98d81e13b862f /src/util | |
parent | ad8eac98c1468b30c17c339e79b84c37a7b15517 (diff) | |
download | markdown-rs-fb185e801e7d2002948d0b4e91ee06767e13ed00.tar.gz markdown-rs-fb185e801e7d2002948d0b4e91ee06767e13ed00.tar.bz2 markdown-rs-fb185e801e7d2002948d0b4e91ee06767e13ed00.zip |
Fix lists in lists and some other bugs
Diffstat (limited to '')
-rw-r--r-- | src/util/skip.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/util/skip.rs b/src/util/skip.rs index d7b3896..10ba364 100644 --- a/src/util/skip.rs +++ b/src/util/skip.rs @@ -59,17 +59,11 @@ fn skip_opt_with_direction( }; if events[index].token_type == *current && balance == 0 { - println!( - "close:it! {:?} {:?} {:?}", - events[index].token_type, balance, index - ); index = if forward { index + 1 } else { index - 1 }; - println!("index:break: {:?}", index); break; } index = if forward { index + 1 } else { index - 1 }; - println!("index:loop: {:?}", index); } } |