mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
do not produce too deep toc for category lists
This commit is contained in:
@@ -254,16 +254,19 @@ def process_category(category, categories, options, env, template, outputname):
|
|||||||
category_header = "%s Modules" % (category.title())
|
category_header = "%s Modules" % (category.title())
|
||||||
underscores = "`" * len(category_header)
|
underscores = "`" * len(category_header)
|
||||||
|
|
||||||
category_file.write(category_header)
|
category_file.write("""\
|
||||||
category_file.write("\n")
|
%s
|
||||||
category_file.write(underscores)
|
%s
|
||||||
category_file.write("\n")
|
|
||||||
category_file.write(".. toctree::\n")
|
.. toctree::
|
||||||
|
:maxdepth: 1
|
||||||
|
|
||||||
|
""" % (category_header, underscores))
|
||||||
|
|
||||||
for module in modules:
|
for module in modules:
|
||||||
result = process_module(module, options, env, template, outputname, module_map)
|
result = process_module(module, options, env, template, outputname, module_map)
|
||||||
if result != "SKIPPED":
|
if result != "SKIPPED":
|
||||||
category_file.write(" %s_module\n" % module)
|
category_file.write(" %s_module\n" % module)
|
||||||
|
|
||||||
|
|
||||||
category_file.close()
|
category_file.close()
|
||||||
|
|||||||
Reference in New Issue
Block a user