xxy aa98ea2623 @
Initial commit

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@
2026-06-05 18:45:29 +08:00

15 lines
697 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""Heading rule prompt variables for report generation."""
DEFAULT_HEADING_RULE = (
"5. 各章节内部小标题须使用规范层级格式(如“### 1.2.1 …”);"
"若在同一节内使用并列条目必须统一写作“1… 2… 3…”"
"禁止使用“一、二、三、”“”或“1.”“1.2.”“3.1”等序号形式;\n"
)
SECTION_HEADING_RULES: dict[str, str] = {
"1.2": (
"5. 本节1.2)必须严格遵循【章节输出结构约束】给定的纯文本编号体结构;"
"不得使用“###”等 Markdown 小标题语法不得将“1.2.1/1.2.2”改写为“1/2”。\n"
),
}