1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

[gemini] Missing LIs. Refs #242

This commit is contained in:
Witold Filipczyk 2023-06-27 16:06:58 +02:00
parent f7bbd09c07
commit 3ff58b17e4

View File

@ -180,6 +180,8 @@ render_gemini_document(struct cache_entry *cached, struct document *document,
in_list = 1; in_list = 1;
add_to_string(&html, "<ul>\n"); add_to_string(&html, "<ul>\n");
add_string_to_string(&html, &html_line); add_string_to_string(&html, &html_line);
} else {
add_string_to_string(&html, &html_line);
} }
} else if (in_list) { } else if (in_list) {
in_list = 0; in_list = 0;