What problem does it solve?
This skill helps users format long-form reports by wrapping sections in HTML details and summary tags to improve readability and reduce scrolling.
Core Features & Use Cases
- Standardizes the presentation of reports with collapsible sections for sections like executive summaries, findings, and recommendations.
- Demonstrates how to structure content using <details> and <summary> tags to enable expand/collapse behavior within Markdown-rendered documents.
- Use Case: Create a project status report where each section can be expanded for details without overwhelming the reader.
Quick Start
To apply this formatting, wrap relevant report sections with HTML details/summary. For example:
<details>
<summary>📊 Report Title - [Date]</summary>
Report Content
Your detailed report content goes here...
Section 1
Content for section 1...
Section 2
Content for section 2...
</details>