Add note about how to submit doc changes to generated module docs, limit TOC depth for module category list.

This commit is contained in:
Michael DeHaan 2013-12-25 21:29:54 -05:00
commit 83d298accc
2 changed files with 4 additions and 2 deletions

View file

@ -310,9 +310,10 @@ def main():
category_list_file.write("============\n")
category_list_file.write("\n\n")
category_list_file.write(".. toctree::\n")
category_list_file.write(" :maxdepth: 1\n\n")
for category in category_names:
category_list_file.write(" list_of_%s_modules\n" % category)
category_list_file.write(" list_of_%s_modules\n" % category)
process_category(category, categories, options, env, template, outputname)
category_list_file.close()