Skip to content

Commit

Permalink
remove eprints
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Aug 9, 2024
1 parent 530b51c commit 2bc4f8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/generation/cmark/parse_cmark_ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ impl<'a> EventIterator<'a> {
pub fn new(file_text: &'a str, iterator: OffsetIter<'a, DefaultBrokenLinkCallback>) -> EventIterator<'a> {
let mut iterator = iterator;
let next = iterator.next();
eprintln!("Raw event: {:?}", next);
// eprintln!("Raw event: {:?}", next);
EventIterator {
file_text,
iterator,
Expand Down Expand Up @@ -56,7 +56,7 @@ impl<'a> EventIterator<'a> {

fn move_iterator_next(&mut self) -> Option<(Event<'a>, Range)> {
let next = self.iterator.next();
eprintln!("Raw event: {:?}", next);
// eprintln!("Raw event: {:?}", next);

match next {
Some((Event::Start(Tag::Table(_)), _)) => self.in_table_count += 1,
Expand Down

0 comments on commit 2bc4f8e

Please sign in to comment.