You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
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.
This commit is contained in:
@@ -96,7 +96,7 @@ static String fix_doc_description(const String &p_bbcode) {
|
|||||||
// Based on what EditorHelp does.
|
// Based on what EditorHelp does.
|
||||||
|
|
||||||
return p_bbcode.dedent()
|
return p_bbcode.dedent()
|
||||||
.remove_chars("\t\r")
|
.remove_chars("\r")
|
||||||
.strip_edges();
|
.strip_edges();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user