stagit

Personal fork of stagit

git clone git://mccd.space/stagit
commit 0abd8818a57e5225e310517aaa622ce211026779
parent 21123caff14deb41a639af23ed400e670caa08d3
Author: Marc <marc@coquand.email>
Date:   Sun, 19 Jul 2026 20:41:27 +0200

Use <kbd> markup instead of p

Diffstat:
Mstagit.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/stagit.c b/stagit.c
@@ -529,9 +529,9 @@ writeheader(FILE *fp, const char *title)
 	xmlencode(fp, description, strlen(description));
 	fputs("</p>", fp);
 	if (cloneurl[0]) {
-	  fputs("<p class=\"url\">git clone ", fp);
+	  fputs("<kbd class=\"url\">git clone ", fp);
 	  xmlencode(fp, cloneurl, strlen(cloneurl));
-	  fputs("</p>", fp);
+	  fputs("</kbd>", fp);
 	}
 
 	fputs("<table><tbody><tr><td id=\"links\">\n", fp);