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

This commit is contained in:
Nishi 2026-03-10 03:28:59 +09:00
commit adaa379cfa
Signed by: nishi
GPG key ID: 27EF69B208EB9343

View file

@ -2,8 +2,9 @@
int action_help(int argc, char** argv) {
printf("Actions:\n");
printf(" help Show this help\n");
printf(" seed Creates a new website\n");
printf(" site Builds an website (default action)\n");
printf(" help Show this help\n");
printf(" seed Creates a new website\n");
printf(" site Builds an website (default action)\n");
printf(" markdown Converts Markdown document to Taiga document\n");
return 0;
}