Skip to content

Commit

Permalink
Merge pull request #87 from mgeisler/remove-debug-output
Browse files Browse the repository at this point in the history
Remove debug output
  • Loading branch information
mgeisler committed Mar 30, 2020
2 parents 33b3bcf + c3545f7 commit a4aab0f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/markdown_deps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ fn find_toml_blocks(text: &str) -> Vec<CodeBlock> {
let mut code_blocks = Vec::new();
let mut current_block = None;
for (event, range) in parser.into_offset_iter() {
println!("event {:?}: {:?}", event, &text[range.clone()]);
match event {
Event::Start(Tag::CodeBlock(Fenced(lang))) if is_toml_block(&lang) => {
// Count number of newlines before the ```. This gives
Expand Down

0 comments on commit a4aab0f

Please sign in to comment.