From 36efa489b38467bdb84847ce23a474bd8c4649dc Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Fri, 2 Apr 2021 17:25:09 -0400 Subject: [PATCH] bug fix for collapsible section --- wiki_gen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki_gen.py b/wiki_gen.py index 70140b4..4dc19a7 100644 --- a/wiki_gen.py +++ b/wiki_gen.py @@ -69,9 +69,9 @@ def generate_wiki_per_category(output_path, update_readme: bool = True): with open(os.path.join(PROJECT_ROOT_DIR, 'README.md'), 'w') as f: table_str = formatted_df.iloc[:5].to_markdown(index=False) collapsible_str = """ -
- next 5 + next 5 + {}
""".format(formatted_df.iloc[5:10].to_markdown(index=False))