diff options
| author | Fuwn <[email protected]> | 2022-04-15 08:36:49 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-04-15 08:36:49 +0000 |
| commit | 8170a1d1920981feaa2181a45ec53da9886d313a (patch) | |
| tree | 2bb9c4803f7130996e6b8c86a28f51b85d7fe4a5 /src | |
| parent | docs(cargo): fix readme location (diff) | |
| download | september-8170a1d1920981feaa2181a45ec53da9886d313a.tar.xz september-8170a1d1920981feaa2181a45ec53da9886d313a.zip | |
fix(gemini_to_html): first list item clipping0.1.1
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/main.rs b/src/main.rs index 7925b57..bf566a2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -131,16 +131,17 @@ fn gemini_to_html( response_string.push('\n'); } // Convert lists - "*" => - if in_list { - response_string.push_str(&format!( - "<li>{}</li>\n", - line.replace('*', "").trim_start() - )); - } else { + "*" => { + if !in_list { in_list = true; response_string.push_str("<ul>\n"); - }, + } + + response_string.push_str(&format!( + "<li>{}</li>\n", + line.replace('*', "").trim_start() + )); + } // Convert headings "#" => { if in_list { |