49 lines
580 B
Markdown
49 lines
580 B
Markdown
# 📚 知识总结
|
|
|
|
**主题**: {{ topic }}
|
|
**生成时间**: {{ timestamp }}
|
|
|
|
---
|
|
|
|
## 📋 内容概览
|
|
|
|
{{ summary }}
|
|
|
|
---
|
|
|
|
{% if key_points %}
|
|
## 🔑 关键要点
|
|
|
|
{% for point in key_points %}
|
|
### {{ loop.index }}. {{ point.title }}
|
|
|
|
{{ point.description }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
---
|
|
|
|
{% if table_data %}
|
|
## 📊 数据表格
|
|
|
|
{{ table }}
|
|
{% endif %}
|
|
|
|
---
|
|
|
|
{% if sources %}
|
|
## 📖 参考来源
|
|
|
|
{% for source in sources %}
|
|
- [{{ source.title }}]({{ source.url }})
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
---
|
|
|
|
{% if next_steps %}
|
|
## ➡️ 后续建议
|
|
|
|
{{ suggestions }}
|
|
{% endif %}
|