(category: str, slug: str)
| 59 | |
| 60 | |
| 61 | def _page_path(category: str, slug: str) -> Path: |
| 62 | base = _CATEGORY_DIRS.get(category, _WIKI_DIR) |
| 63 | return base / f"{slug}.md" |
| 64 | |
| 65 | |
| 66 | # --------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected