Fix asciinema player rendering and exclude superpowers from docs #19
Loading…
Reference in a new issue
No description provided.
Delete branch "refs/pull/19/head"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #17
Closes #18
#17 — Asciinema player rendering as black shapes
Root cause: the CSS URL in mkdocs.yml referenced
asciinema-player.min.csswhich does not exist in the npm package (the file isasciinema-player.csswithout.min.). With no CSS loading, the player rendered unstyled — the play button SVG and controls appeared as large black geometric shapes.Fix: bundle both the JS and CSS locally in
docs/javascripts/and reference them with local paths. Also upgraded from 3.8.0 to 3.17.0 (latest stable) while here.#18 — Superpowers plans/specs in docs/ causing MkDocs warnings
The superpowers skill writes plans and specs to
docs/superpowers/by default. These files are not in the nav and are not user-facing documentation, so MkDocs warns about them on every build.Fix: added
exclude_docs: superpowers/to mkdocs.yml so any stray files there are silently ignored, and added a note to project CLAUDE.md directing future plans/specs to.superpowers/instead ofdocs/.