Merge pull request #8441 from evildmp/evolutionary-documentation-restructure

Moved more sections from reference to how-to.
This commit is contained in:
Daniele Procida
2021-03-15 08:22:11 +00:00
committed by GitHub
parent 63bc49de70
commit 2641761c1c
17 changed files with 399 additions and 1221 deletions

View File

@@ -74,7 +74,7 @@ def iter_plugins():
def main():
plugins = list(iter_plugins())
plugin_table = tabulate.tabulate(plugins, headers="keys", tablefmt="rst")
plugin_list = pathlib.Path("doc", "en", "plugin_list.rst")
plugin_list = pathlib.Path("doc", "en", "reference", "plugin_list.rst")
with plugin_list.open("w") as f:
f.write(FILE_HEAD)
f.write(f"This list contains {len(plugins)} plugins.\n\n")