summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-12-07 19:00:30 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-12-07 19:00:30 +0100
commit0808028312c76abf2fdd51678bd8ce28c2e8b2a5 (patch)
treeae74865b61e52b0c2ea2ffe2d8346725c0c862b7
parent53d6b47cc28903f9344245a36d33be6d0a6eee45 (diff)
improve HTML code
-rw-r--r--urmoms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/urmoms.c b/urmoms.c
index ec3b00a..6003871 100644
--- a/urmoms.c
+++ b/urmoms.c
@@ -510,7 +510,7 @@ writefiles(FILE *fp)
git_repository_index(&index, repo);
count = git_index_entrycount(index);
- fputs("<table><thead><tr><td>Mode</td><td>Name</td><td>Size</td></tr></thead><tbody>", fp);
+ fputs("<table><thead>\n<tr><td>Mode</td><td>Name</td><td align=\"right\">Size</td></tr>\n</thead><tbody>\n", fp);
for (i = 0; i < count; i++) {
entry = git_index_get_byindex(index, i);
@@ -522,7 +522,7 @@ writefiles(FILE *fp)
xmlencode(fp, entry->path, strlen(entry->path));
fputs("</a></td><td align=\"right\">", fp);
fprintf(fp, "%" PRIu64, entry->file_size);
- fputs("</td></tr>", fp);
+ fputs("</td></tr>\n", fp);
}
fputs("</tbody></table>", fp);