diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-07-28 03:13:48 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-07-28 03:13:48 +0300 |
| commit | a9dc16aac2a7e7a6e5e4bb1c19897b3d707ba4d1 (patch) | |
| tree | 67fa5fec9266a56e63fa095b92cb15b850f18428 | |
| parent | 56fe7c650ea2b7a1f506eb5823855f02e379f38e (diff) | |
| download | vyos-documentation-a9dc16aac2a7e7a6e5e4bb1c19897b3d707ba4d1.tar.gz vyos-documentation-a9dc16aac2a7e7a6e5e4bb1c19897b3d707ba4d1.zip | |
docs: exclude superpowers/ from the Sphinx build
`docs/superpowers/` holds Claude Code plugin-generated internal design
specs and plans, not user documentation. Adding `superpowers` to
`exclude_patterns` guards against Sphinx ever picking the directory up
and publishing it should it reappear in the source tree.
Guard only — the content itself was already removed in 3ab97e71 and
abb8be5b.
| -rw-r--r-- | docs/conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index c61b8984..b09b9f6a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -123,6 +123,7 @@ gettext_uuid = False exclude_patterns = [ u'_build', 'Thumbs.db', '.DS_Store', '_include/vyos-1x', '_rst_legacy', + 'superpowers', ] # The name of the Pygments (syntax highlighting) style to use. |
