From e9131550b18a4c664fd4e51f44bf02b0afb70e79 Mon Sep 17 00:00:00 2001 From: Quentin Quaadgras Date: Tue, 16 Sep 2025 20:58:47 +1200 Subject: [PATCH] add codeblock indentation back to --dump-extension-api-with-docs xml codeblock indentation was changed from spaces to tabs but the tabs were being replaced with empty strings when exported with --dump-extension-api-with-docs, this is small change so that tab characters are no longer replaced. --- core/extension/extension_api_dump.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/extension/extension_api_dump.cpp b/core/extension/extension_api_dump.cpp index 685a3bb15b1..036b3ecf86e 100644 --- a/core/extension/extension_api_dump.cpp +++ b/core/extension/extension_api_dump.cpp @@ -96,7 +96,7 @@ static String fix_doc_description(const String &p_bbcode) { // Based on what EditorHelp does. return p_bbcode.dedent() - .remove_chars("\t\r") + .remove_chars("\r") .strip_edges(); }