diff options
| author | Fuwn <[email protected]> | 2023-04-26 05:53:23 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-26 05:53:23 +0000 |
| commit | ff119df881f26c2e9352cd51a20d444015721566 (patch) | |
| tree | a42024586b870df5f4cc9cc70172c726a1283e5a /src | |
| parent | deps(germ): bump from 0.3.7 to 0.3.9 (diff) | |
| download | september-ff119df881f26c2e9352cd51a20d444015721566.tar.xz september-ff119df881f26c2e9352cd51a20d444015721566.zip | |
fix(gemini_to_html): remove debug log
Diffstat (limited to 'src')
| -rw-r--r-- | src/gemini_to_html.rs | 4 |
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 => {} } } |