Personal build of stagit static git page generator.
log | files | refs | readme | license

commit 4bcb0037f450ac6379f030619932c0f57467d9d6
parent e418cceaab5ac78fd8ef66a54e7586d49a31d7ad
Author: Michael Skec
Date:   Wed, 29 Nov 2023 08:45:12 +1100

stagit-index: remove trailing slashes from repo links

Diffstat:
Mstagit-index.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stagit-index.c b/stagit-index.c @@ -220,7 +220,7 @@ writelog(FILE *fp) fputs("<tr><td><a href=\"" REPO_PREFIX, fp); percentencode(fp, reponame, strlen(reponame)); - fputs("/\">", fp); + fputs("\">", fp); xmlencode(fp, reponame, strlen(reponame)); fputs("</a></td><td>", fp); xmlencode(fp, description, strlen(description));