Commit 7965d331 by Mikhail Sobolev

do not produce too deep toc for category lists

parent af1f8db5
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment