--- lbbs/src/article_post.c 2025/09/30 03:02:06 1.25 +++ lbbs/src/article_post.c 2025/10/09 12:20:31 1.27 @@ -118,7 +118,7 @@ int article_post(const SECTION_LIST *p_s case 'T': moveto(24, 1); clrtoeol(); - len = get_data(24, 1, "标题: ", title_input, sizeof(title_input), TITLE_INPUT_MAX_LEN, DOECHO); + len = get_data(24, 1, "标题: ", title_input, sizeof(title_input), TITLE_INPUT_MAX_LEN); for (p = title_input; *p == ' '; p++) ; for (q = title_input + len; q > p && *(q - 1) == ' '; q--) @@ -837,7 +837,7 @@ int article_reply(const SECTION_LIST *p_ } // Apply LML render to content body - len = lml_plain(row[1], content_f, ARTICLE_CONTENT_MAX_LEN, 0); + len = lml_render(row[1], content_f, ARTICLE_CONTENT_MAX_LEN, 0); content_f[len] = '\0'; // Remove control sequence @@ -921,7 +921,7 @@ int article_reply(const SECTION_LIST *p_ case 'T': moveto(24, 1); clrtoeol(); - len = get_data(24, 1, "标题: ", title_input, sizeof(title_input), TITLE_INPUT_MAX_LEN, DOECHO); + len = get_data(24, 1, "标题: ", title_input, sizeof(title_input), TITLE_INPUT_MAX_LEN); for (p = title_input; *p == ' '; p++) ; for (q = title_input + len; q > p && *(q - 1) == ' '; q--)