From b6a4c8d476e105961e15c54f9233a19b058129bc Mon Sep 17 00:00:00 2001 From: NovaRain Date: Tue, 22 Aug 2023 15:23:38 +0800 Subject: [PATCH] Tried fixing in-page subcategory links --- docs/yaml_to_md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/yaml_to_md.py b/docs/yaml_to_md.py index 2873d427..5e6b8de2 100755 --- a/docs/yaml_to_md.py +++ b/docs/yaml_to_md.py @@ -76,7 +76,7 @@ with open(functions_yaml) as yf: if len(children) > 0: text += "\n## Subcategories\n{: .no_toc}\n\n" for c in children: - text += "- [**{}**](/{}/)\n".format(c["name"], get_slug(c["name"])) + text += "- [**{}**](/sfall/{}/)\n".format(c["name"], get_slug(c["name"])) text += "\n" if 'items' in cat: # allow parent pages with no immediate items