From 9c83d3db5b02d0c554e9a0a958b6c52ea0d6dc05 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Thu, 7 Dec 2023 11:35:06 +0800 Subject: [PATCH] Fix missing heading in translated online class reference --- doc/tools/make_rst.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/doc/tools/make_rst.py b/doc/tools/make_rst.py index 89308b1ee10..c3a21f3d7bd 100755 --- a/doc/tools/make_rst.py +++ b/doc/tools/make_rst.py @@ -1552,16 +1552,11 @@ def make_rst_index(grouped_classes: Dict[str, List[str]], dry_run: bool, output_ f.write(".. _doc_class_reference:\n\n") - main_title = translate("All classes") - f.write(f"{main_title}\n") - f.write(f"{'=' * len(main_title)}\n\n") + f.write(make_heading("All classes", "=")) for group_name in CLASS_GROUPS: if group_name in grouped_classes: - group_title = translate(CLASS_GROUPS[group_name]) - - f.write(f"{group_title}\n") - f.write(f"{'=' * len(group_title)}\n\n") + f.write(make_heading(CLASS_GROUPS[group_name], "=")) f.write(".. toctree::\n") f.write(" :maxdepth: 1\n")