Skip to content

Commit

Permalink
Remove accidental println
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Sep 20, 2023
1 parent a9ec7e6 commit 32baf8e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/util/gfm_tagfilter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use crate::util::constant::{GFM_HTML_TAGFILTER_NAMES, GFM_HTML_TAGFILTER_SIZE_MA
use alloc::string::String;
use core::str;
extern crate std;
use std::println;

/// Make dangerous HTML a tiny bit safer.
///
Expand Down Expand Up @@ -51,7 +50,6 @@ pub fn gfm_tagfilter(value: &str) -> String {
name_end += 1;
}

println!("{:?}, {:?}, {:?}", name_start, name_end, bytes);
// Non-empty.
if (name_end == len || (name_end != name_start &&
// HTML whitespace, closing slash, or closing angle bracket.
Expand Down

0 comments on commit 32baf8e

Please sign in to comment.