From cbda96f844da142e070c760c1adf4642b5805ec4 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Wed, 25 Mar 2026 17:38:09 +0900 Subject: [PATCH] fix --- src/action/markdown.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/action/markdown.c b/src/action/markdown.c index a109b47..83e6942 100644 --- a/src/action/markdown.c +++ b/src/action/markdown.c @@ -93,7 +93,7 @@ static int enter_block(MD_BLOCKTYPE type, void* detail, void* user) { indent++; } else if(type == MD_BLOCK_HR) { print_indent(); - fprintf(out, "
\n"); + fprintf(out, "
\n"); indent++; } else if(type == MD_BLOCK_CODE) { MD_BLOCK_CODE_DETAIL* det = detail;