文件名:{{ file_name }} | 生成时间:{{ generation_time }}
| 规则名称 | {{ match.rule_name }} |
| 规则描述 | {{ match.rule_description or '无' }} |
| 匹配类型 | {{ match.match_type }} ({{ match.analysis_type }}) |
| 行号 | {{ match.line_number }} |
| 匹配内容 | {{ match.match_text }} |
| 上下文 |
{% for ctx_line in
match.context_lines_limited %}
{{ ctx_line }}
{% endfor %} {% if match.has_more_context %}
... 共 {{ match.context_total_lines }}
行 ...
{% endif %}
|