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

This commit is contained in:
Nishi 2026-06-29 02:19:35 +09:00
commit 089d8f2e53

View file

@ -223,6 +223,12 @@ void default_body(FILE* out, const char* top, xl_node_t* element, const char* in
sprintf(tag, "<%s%s>", element->name, text);
sprintf(end, "</%s>", element->name);
} else if(strcmp(element->name, "marquee") == 0) {
accept_attr(top, text, spec, element, NULL);
sprintf(tag, "<%s%s>", element->name, text);
sprintf(end, "</%s>", element->name);
} else if(strcmp(element->name, "table") == 0) {
char* t = xl_get_attribute(element, "class");