Export Formats
TXT
Plain text that combines the executive summary and key points.
Summary:
- Short overview in sentences.
Key Points:
- Bullet 1
- Bullet 2
- Bullet 3
Markdown
Structured headings and bullet points for docs and note apps.
# Summary
A few concise sentences.
## Key Points
- Point A
- Point B
- Point C
HTML
Minimal HTML for embedding in websites or knowledge bases.
<section>
<h1>Summary</h1>
<p>Short paragraph...</p>
<h2>Key Points</h2>
<ul>
<li>Point 1</li>
<li>Point 2</li>
</ul>
</section>
JSON
Machine-readable fields for pipelines and integrations.
{
"summary": "Short overview...",
"keyPoints": ["Point 1", "Point 2", "Point 3"],
"sourceFile": "my-report.pdf",
"generatedAt": "2025-09-11T12:00:00Z"
}
CSV
One row per key point with a summary field for quick spreadsheets.
summary,key_point
"Short overview...","Point 1"
"Short overview...","Point 2"