changed clone url to not be hyperlink

This commit is contained in:
Noah Swerhun 2021-04-16 17:48:57 -05:00
parent 6fe2126d61
commit a32ca23741

View file

@ -478,11 +478,9 @@ writeheader(FILE *fp, const char *title)
xmlencode(fp, description, strlen(description));
fputs("</span></td></tr>", fp);
if (cloneurl[0]) {
fputs("<tr class=\"url\"><td></td><td>git clone <a href=\"", fp);
fputs("<tr class=\"url\"><td></td><td>git clone <p class=\"cloneurl\">", fp);
xmlencode(fp, cloneurl, strlen(cloneurl));
fputs("\">", fp);
xmlencode(fp, cloneurl, strlen(cloneurl));
fputs("</a></td></tr>", fp);
fputs("</p></td></tr>", fp);
}
fputs("<tr><td></td><td>\n", fp);
fprintf(fp, "<a href=\"%slog.html\">Log</a> | ", relpath);