From c007c6a58534611e64d2f19c1c15a315e361e106 Mon Sep 17 00:00:00 2001 From: Noah Swerhun Date: Fri, 16 Apr 2021 17:50:36 -0500 Subject: [PATCH] changed p to span for inline --- stagit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stagit.c b/stagit.c index 8bda62a..c7e0d34 100644 --- a/stagit.c +++ b/stagit.c @@ -478,9 +478,9 @@ writeheader(FILE *fp, const char *title) xmlencode(fp, description, strlen(description)); fputs("", fp); if (cloneurl[0]) { - fputs("git clone

", fp); + fputs("git clone ", fp); xmlencode(fp, cloneurl, strlen(cloneurl)); - fputs("

", fp); + fputs("", fp); } fputs("\n", fp); fprintf(fp, "Log | ", relpath);