From 83db3b5ba131d03216006a0c42c2c466356f2a0d Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 11 Mar 2023 07:11:40 +0000 Subject: fix(link): don't convert link to html --- src/gemini_to_html.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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!( "

{}

\n", href, - to_html(&text.clone().unwrap_or_default()) + text.clone().unwrap_or_default(), )); } Node::Heading { level, text } => { -- cgit v1.2.3