diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/gemini_to_html.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gemini_to_html.rs b/src/gemini_to_html.rs index ee723b7..1a81c28 100644 --- a/src/gemini_to_html.rs +++ b/src/gemini_to_html.rs @@ -121,7 +121,7 @@ pub fn gemini_to_html( html.push_str(&format!( "<p><a href=\"{}\">{}</a></p>\n", href, - to_html(&text.clone().unwrap_or_default()) + text.clone().unwrap_or_default(), )); } Node::Heading { level, text } => { |