(name: str, slug: str)
| 288 | |
| 289 | |
| 290 | def synthetic_category(name: str, slug: str) -> SyntheticCategory: |
| 291 | return {"name": name, "slug": slug, "description": "", "description_html": ""} |
| 292 | |
| 293 | |
| 294 | def write_sitemap_xml(path: Path, urls: Sequence[tuple[str, str]]) -> None: |