From dad92488970a7f96e34bbea2985568cfeb4ed2b2 Mon Sep 17 00:00:00 2001 From: nutti Date: Mon, 11 Mar 2024 20:32:23 +0900 Subject: [PATCH] Fix: Invalid RST bpy.utils.register_cli_command formatting Titles can't be used because this text is indented. Ref: !119320 --- doc/python_api/examples/bpy.utils.register_cli_command.1.py | 3 +-- doc/python_api/examples/bpy.utils.register_cli_command.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/python_api/examples/bpy.utils.register_cli_command.1.py b/doc/python_api/examples/bpy.utils.register_cli_command.1.py index 238bc2fb9cf..05227853a2a 100644 --- a/doc/python_api/examples/bpy.utils.register_cli_command.1.py +++ b/doc/python_api/examples/bpy.utils.register_cli_command.1.py @@ -1,6 +1,5 @@ """ -Using Python Argument Parsing ------------------------------ +**Using Python Argument Parsing** This example shows how the Python ``argparse`` module can be used with a custom command. diff --git a/doc/python_api/examples/bpy.utils.register_cli_command.py b/doc/python_api/examples/bpy.utils.register_cli_command.py index 3f2a7a8808b..fe9fb55ddfc 100644 --- a/doc/python_api/examples/bpy.utils.register_cli_command.py +++ b/doc/python_api/examples/bpy.utils.register_cli_command.py @@ -1,6 +1,5 @@ """ -Custom Commands ---------------- +**Custom Commands** Registering commands makes it possible to conveniently expose command line functionality via commands passed to (``-c`` / ``--command``).