Cleanup previous PR

This commit is contained in:
Kovid Goyal
2024-08-04 21:06:32 +05:30
parent d9741421a8
commit c852a56574
4 changed files with 128 additions and 91 deletions

View File

@@ -717,7 +717,7 @@ def setup_man_pages() -> None:
base = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
for x in glob.glob(os.path.join(base, 'docs/kittens/*.rst')):
kn = os.path.basename(x).rpartition('.')[0]
if kn == 'custom':
if kn in ('custom', 'developing-builtin-kittens'):
continue
cd = get_kitten_cli_docs(kn) or {}
khn = kn.replace('_', '-')