diff options
author | kobewi <kobewi4e@gmail.com> | 2021-11-18 15:03:03 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2021-11-18 15:32:23 +0100 |
commit | 6f929395d961fed8ce44848d69fdd32fd029ec9c (patch) | |
tree | 4290d4654f9585fea7fdb54576e94dfc2d0bcf92 /doc/tools | |
parent | e7216d408530506bf0c4ab5eaf9b059c5598f303 (diff) |
Add [theme_item] tag to editor help
Diffstat (limited to 'doc/tools')
-rwxr-xr-x | doc/tools/make_rst.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/tools/make_rst.py b/doc/tools/make_rst.py index 5d3167a773..0d88ce4998 100755 --- a/doc/tools/make_rst.py +++ b/doc/tools/make_rst.py @@ -328,7 +328,7 @@ class State: theme_item.text, default_value, ) - class_def.theme_items[theme_item_id] = theme_item_def + class_def.theme_items[theme_item_name] = theme_item_def tutorials = class_root.find("tutorials") if tutorials is not None: @@ -905,6 +905,7 @@ def rstize_text(text, state): # type: (str, State) -> str or cmd.startswith("member") or cmd.startswith("signal") or cmd.startswith("constant") + or cmd.startswith("theme_item") ): param = tag_text[space_pos + 1 :] @@ -941,6 +942,13 @@ def rstize_text(text, state): # type: (str, State) -> str print_error("Unresolved member '{}', file: {}".format(param, state.current_class), state) ref_type = "_property" + elif cmd.startswith("theme_item"): + if method_param not in class_def.theme_items: + print_error( + "Unresolved theme item '{}', file: {}".format(param, state.current_class), state + ) + ref_type = "_theme_item" + elif cmd.startswith("signal"): if method_param not in class_def.signals: print_error("Unresolved signal '{}', file: {}".format(param, state.current_class), state) |