From adaa379cfa41dbc19c8e496a8bc7869263de0ebb Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 10 Mar 2026 03:28:59 +0900 Subject: [PATCH] add help --- src/action/help.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/action/help.c b/src/action/help.c index b3d7fcb..f32cf58 100644 --- a/src/action/help.c +++ b/src/action/help.c @@ -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; }