diff options
| author | Fuwn <[email protected]> | 2023-03-11 07:11:40 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-03-11 07:11:40 +0000 |
| commit | 253bce7115e1f9415b6660b8579c43372b1137f1 (patch) | |
| tree | 35f7018aebfd5ffab6dc379426e2753636b120e0 /src | |
| parent | feat(response): allow multiple css files (diff) | |
| download | september-253bce7115e1f9415b6660b8579c43372b1137f1.tar.xz september-253bce7115e1f9415b6660b8579c43372b1137f1.zip | |
fix(link): don't convert link to html
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 } => { |