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
commitff119df881f26c2e9352cd51a20d444015721566 (patch)
treea42024586b870df5f4cc9cc70172c726a1283e5a /src
parentdeps(germ): bump from 0.3.7 to 0.3.9 (diff)
downloadseptember-ff119df881f26c2e9352cd51a20d444015721566.tar.xz
september-ff119df881f26c2e9352cd51a20d444015721566.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 => {}
}
}