aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-03-11 07:11:40 +0000
committerFuwn <[email protected]>2023-03-11 07:11:40 +0000
commitf11012cf62a4488e81153d4747bb6e10639b0f19 (patch)
tree35f7018aebfd5ffab6dc379426e2753636b120e0 /src
parentfeat(response): allow multiple css files (diff)
downloadseptember-f11012cf62a4488e81153d4747bb6e10639b0f19.tar.xz
september-f11012cf62a4488e81153d4747bb6e10639b0f19.zip
fix(link): don't convert link to html
Diffstat (limited to 'src')
-rw-r--r--src/gemini_to_html.rs2
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 } => {