do not produce too deep toc for category lists

pull/5421/head
Mikhail Sobolev 11 years ago
parent af1f8db51d
commit 7965d331f3

@ -254,16 +254,19 @@ def process_category(category, categories, options, env, template, outputname):
category_header = "%s Modules" % (category.title())
underscores = "`" * len(category_header)
category_file.write(category_header)
category_file.write("\n")
category_file.write(underscores)
category_file.write("\n")
category_file.write(".. toctree::\n")
category_file.write("""\
%s
%s
.. toctree::
:maxdepth: 1
""" % (category_header, underscores))
for module in modules:
result = process_module(module, options, env, template, outputname, module_map)
if result != "SKIPPED":
category_file.write(" %s_module\n" % module)
category_file.write(" %s_module\n" % module)
category_file.close()

Loading…
Cancel
Save