stagit

My fork of stagit

git clone git://git.shimmy1996.com/stagit.git
commit 78164638f200d446e983adf7170ea2676021407f
parent dff7e67b9c026304ed7097ef30e7cccc41791d64
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sat,  4 Apr 2020 12:56:53 -0500

Correct spacing and add back hr

Diffstat:
Mstagit.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/stagit.c b/stagit.c
@@ -463,7 +463,7 @@ writeheader(FILE *fp, const char *title)
 		name, relpath);
 	fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
 	fputs("</head>\n<body>\n<nav>", fp);
-	fprintf(fp, "<a href=\"../%s\">←Back</a> |", relpath);
+	fprintf(fp, "<a href=\"../%s\">←Back</a> | ", relpath);
 	fprintf(fp, "<a href=\"%slog.html\">Log</a> | ", relpath);
 	fprintf(fp, "<a href=\"%sfiles.html\">Files</a> | ", relpath);
 	fprintf(fp, "<a href=\"%srefs.html\">Refs</a>", relpath);
@@ -488,7 +488,7 @@ writeheader(FILE *fp, const char *title)
 		xmlencode(fp, cloneurl, strlen(cloneurl));
 		fputs("</a><br/>", fp);
 	}
-	fputs("\n<div id=\"content\">\n", fp);
+	fputs("\n<hr/>\n<div id=\"content\">\n", fp);
 }
 
 void