summaryrefslogtreecommitdiff
path: root/stagit-index.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2017-04-16 20:36:48 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2017-04-16 20:36:48 +0200
commit4035291297b1a559cd5b0bf4bef65b7fe33c59c1 (patch)
treedef25ec8e45200004c6377f3fa40863360949f16 /stagit-index.c
parent980fa8ea9bce704c9e44cfea47860e82cffec161 (diff)
stagit-index: remove empty h1 and add bold markup to table headers
Diffstat (limited to 'stagit-index.c')
-rw-r--r--stagit-index.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/stagit-index.c b/stagit-index.c
index 0a72b33..1552f40 100644
--- a/stagit-index.c
+++ b/stagit-index.c
@@ -81,12 +81,14 @@ writeheader(FILE *fp)
fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
fputs("</head>\n<body>\n", fp);
fprintf(fp, "<table>\n<tr><td><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></td>\n"
- "<td><h1>%s</h1><span class=\"desc\">%s</span></td></tr><tr><td></td><td>\n",
- relpath, name, description);
- fputs("</td></tr>\n</table>\n<hr/>\n<div id=\"content\">\n"
- "<table id=\"index\"><thead>\n"
- "<tr><td>Name</td><td>Description</td><td>Owner</td><td>Last commit</td></tr>"
- "</thead><tbody>\n", fp);
+ "<td><span class=\"desc\">", relpath);
+ xmlencode(fp, description, strlen(description));
+ fputs("</span></td></tr><tr><td></td><td>\n"
+ "</td></tr>\n</table>\n<hr/>\n<div id=\"content\">\n"
+ "<table id=\"index\"><thead>\n"
+ "<tr><td><b>Name</b></td><td><b>Description</b></td><td><b>Owner</b></td>"
+ "<td><b>Last commit</b></td></tr>"
+ "</thead><tbody>\n", fp);
}
void