things
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-03-02 21:27:26 +09:00
commit 211360387b
Signed by: nishi
GPG key ID: 27EF69B208EB9343
9 changed files with 447 additions and 1 deletions

View file

@ -161,7 +161,7 @@ void default_nav(FILE* out, const char* top, xl_node_t* element, int indent) {
if((name = xl_get_attribute(element, "name")) == NULL) name = "";
for(i = 0; i < indent; i++) fprintf(out, "\t");
fprintf(out, " - <a href=\"%s\">%s</a><br>", link, name);
fprintf(out, " - <a href=\"%s\">%s</a><br>\n", link, name);
} else if(strcmp(element->name, "group") == 0) {
char* title;
xl_node_t* child;