| 24 | |
| 25 | |
| 26 | class ParsedSection(TypedDict): |
| 27 | name: str |
| 28 | slug: str |
| 29 | description: str # plain text, links resolved to text |
| 30 | description_html: str # inline HTML, properly escaped |
| 31 | entries: list[ParsedEntry] |
| 32 | entry_count: int |
| 33 | |
| 34 | |
| 35 | class ParsedGroup(TypedDict): |