diff --git a/utils/message_formatter.py b/utils/message_formatter.py index 1c4d8ec..fb75224 100644 --- a/utils/message_formatter.py +++ b/utils/message_formatter.py @@ -36,7 +36,7 @@ def format_quote_message(xml_content): # 构建格式化的引用消息 if display_name and quoted_content: - formatted_message = f"┌─────────────────────────────────\n│ 引用 {display_name}:{quoted_content}\n└─────────────────────────────────\n{main_content}" + formatted_message = f"{main_content}\n引用 {display_name}:{quoted_content}" return formatted_message return main_content