bug fix for collapsible section

This commit is contained in:
Bin Yang
2021-04-02 17:25:09 -04:00
parent 6052bbc261
commit 36efa489b3
+2 -2
View File
@@ -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 = """
<details>
<summary><sub>next 5</sub></summary>
<summary>next 5</summary>
{}
</details>
""".format(formatted_df.iloc[5:10].to_markdown(index=False))