summaryrefslogtreecommitdiff
path: root/sfeed_html.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2020-03-09 19:21:15 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2020-03-10 23:45:47 +0100
commit52cd6f7ad6a87b8419cfa8a0ffb6f8546b985e2f (patch)
tree6032ce7e89e2e93e4e1dbc45db00f1a14e6c1338 /sfeed_html.c
parent991008dc460854b5f2f978a87946f9d90e3e5ee5 (diff)
sfeed_html/sfeed_frames: use a <pre> section per feed
This improves output with Dillo, w3m and possibly other simple browsers. - Dillo has a bug where it resets its block-style after <h2> when it is inside <pre>. Then it ignores newlines (inside <pre>) and the links are inlined. - w3m does not have a (line)margin for h2.
Diffstat (limited to 'sfeed_html.c')
-rw-r--r--sfeed_html.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sfeed_html.c b/sfeed_html.c
index 8f104b7..3afd18f 100644
--- a/sfeed_html.c
+++ b/sfeed_html.c
@@ -33,6 +33,7 @@ printfeed(FILE *fp, struct feed *f)
xmlencode(f->name, stdout);
fputs("</a></h2>\n", stdout);
}
+ fputs("<pre>\n", stdout);
while ((linelen = getline(&line, &linesize, fp)) > 0) {
if (line[linelen - 1] == '\n')
@@ -69,6 +70,7 @@ printfeed(FILE *fp, struct feed *f)
fputs("</u></b>", stdout);
fputs("\n", stdout);
}
+ fputs("</pre>\n", stdout);
}
int
@@ -103,7 +105,6 @@ main(int argc, char *argv[])
fputs("\t\t<div id=\"items\">\n", stdout);
else
fputs("\t\t<div id=\"items\" class=\"nosidebar\">\n", stdout);
- fputs("<pre>\n", stdout);
if (argc == 1) {
if (!(feeds[0] = calloc(1, sizeof(struct feed))))
@@ -126,7 +127,7 @@ main(int argc, char *argv[])
fclose(fp);
}
}
- fputs("</pre>\n</div>\n", stdout); /* div items */
+ fputs("</div>\n", stdout); /* div items */
if (showsidebar) {
fputs("\t<div id=\"sidebar\">\n\t\t<ul>\n", stdout);