aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-04-26 05:53:23 +0000
committerFuwn <[email protected]>2023-04-26 05:53:23 +0000
commit519565f511978d5c30bbe3b8434afa71a9ac7f01 (patch)
treefa2795ba9307f4d4623d0d4d32194d35eb045340 /src
parentdeps(germ): bump from 0.3.7 to 0.3.9 (diff)
downloadseptember-519565f511978d5c30bbe3b8434afa71a9ac7f01.tar.xz
september-519565f511978d5c30bbe3b8434afa71a9ac7f01.zip
fix(gemini_to_html): remove debug log
Diffstat (limited to 'src')
-rw-r--r--src/gemini_to_html.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gemini_to_html.rs b/src/gemini_to_html.rs
index d7bc9b6..933d4cd 100644
--- a/src/gemini_to_html.rs
+++ b/src/gemini_to_html.rs
@@ -146,9 +146,7 @@ pub fn gemini_to_html(
Node::PreformattedText { text, .. } => {
html.push_str(&format!("<pre>{text}</pre>"));
}
- Node::Whitespace => {
- println!("i am white");
- }
+ Node::Whitespace => {}
}
}