From e969b503e93ccc8b1a03b1fe880505dbffc8e796 Mon Sep 17 00:00:00 2001 From: niclas Date: Fri, 16 Feb 2024 10:36:17 +0100 Subject: [PATCH] Fix [generator] move statistics in toc --- tools/mkdocs/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkdocs/generator.py b/tools/mkdocs/generator.py index 59fef87..93224fa 100644 --- a/tools/mkdocs/generator.py +++ b/tools/mkdocs/generator.py @@ -370,9 +370,9 @@ class Cluster: def create_index(galaxies): index_output = INTRO - index_output += STATISTICS for galaxie in galaxies: index_output += f"- [{galaxie.name}](./{galaxie.json_file_name}/index.md)\n" + index_output += STATISTICS index_output += CONTRIBUTING return index_output