stagit

Personal fork of stagit

git clone git://mccd.space/stagit
commit 3c8696bc6eab37bbae166dd343364398cd4f02bd
parent fb7252eee9e8dd69bc03ee82f2834ff0aa0850a4
Author: Marc <marc@coquand.email>
Date:   Tue, 21 Jul 2026 15:39:19 +0200

Use the raw description

Diffstat:
Mstagit.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stagit.c b/stagit.c
@@ -526,7 +526,7 @@ writeheader(FILE *fp, const char *title)
 	fputs("<h1>", fp);
 	xmlencode(fp, strippedname, strlen(strippedname));
 	fputs("</h1><p class=\"desc\">", fp);
-	xmlencode(fp, description, strlen(description));
+	fputs(description, pf);
 	fputs("</p>", fp);
 	if (cloneurl[0]) {
 	  fputs("<kbd class=\"url\">git clone ", fp);