stagit

static git page generator
git clone https://git.awy.one/stagit
Log | Files | Refs | README | LICENSE

commit 1fec157c3c35fd72563c2560db1ad72d0fa43222
parent 3f5689ad7aa5246121803344352773823bf1f387
Author: awy <awy@awy.one>
Date:   Fri, 10 Apr 2026 23:16:47 +0300

cleanup

Diffstat:
Mstagit.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/stagit.c b/stagit.c @@ -1542,7 +1542,7 @@ main(int argc, char *argv[]) relpath = ""; mkdir("commit", S_IRWXU | S_IRWXG | S_IRWXO); writeheader(fp, "Log"); - fputs("<hr/>\n<div id=\"content\">\n", fp); + fputs("<div id=\"content\">\n", fp); fputs("<table id=\"log\"><thead>\n<tr><td><b>Date</b></td>" "<td><b>Commit message</b></td>" "<td><b>Author</b></td><td class=\"num\" align=\"right\"><b>Files</b></td>" @@ -1624,7 +1624,7 @@ main(int argc, char *argv[]) /* summary page with branches and tags */ fp = efopen("refs.html", "w"); writeheader(fp, "Refs"); - fputs("<hr/>\n<div id=\"content\">\n", fp); + fputs("<div id=\"content\">\n", fp); writerefs(fp); writefooter(fp); checkfileerror(fp, "refs.html", 'w');