diff --git a/doc/classes/EditorSettings.xml b/doc/classes/EditorSettings.xml
index 6de4a0ffafb..1501a2f3d66 100644
--- a/doc/classes/EditorSettings.xml
+++ b/doc/classes/EditorSettings.xml
@@ -870,7 +870,7 @@
The language to use for the editor interface.
- Translations are provided by the community. If you spot a mistake, [url=$DOCS_URL/contributing/documentation/editor_and_docs_localization.html]contribute to editor translations on Weblate![/url]
+ Translations are provided by the community. If you spot a mistake, [url=https://contributing.godotengine.org/en/latest/documentation/translation/index.html]contribute to editor translations on Weblate![/url]
The preferred monitor to display the editor. If [b]Auto[/b], the editor will remember the last screen it was displayed on across multiple sessions.
diff --git a/doc/classes/JavaScriptBridge.xml b/doc/classes/JavaScriptBridge.xml
index 3662835b14a..191caed1685 100644
--- a/doc/classes/JavaScriptBridge.xml
+++ b/doc/classes/JavaScriptBridge.xml
@@ -5,7 +5,7 @@
The JavaScriptBridge singleton is implemented only in the Web export. It's used to access the browser's JavaScript context. This allows interaction with embedding pages or calling third-party JavaScript APIs.
- [b]Note:[/b] This singleton can be disabled at build-time to improve security. By default, the JavaScriptBridge singleton is enabled. Official export templates also have the JavaScriptBridge singleton enabled. See [url=$DOCS_URL/contributing/development/compiling/compiling_for_web.html]Compiling for the Web[/url] in the documentation for more information.
+ [b]Note:[/b] This singleton can be disabled at build-time to improve security. By default, the JavaScriptBridge singleton is enabled. Official export templates also have the JavaScriptBridge singleton enabled. See [url=$DOCS_URL/engine_details/development/compiling/compiling_for_web.html]Compiling for the Web[/url] in the documentation for more information.
$DOCS_URL/tutorials/export/exporting_for_web.html#calling-javascript-from-script
diff --git a/doc/classes/Object.xml b/doc/classes/Object.xml
index 628ff63f79c..6fff82d5d76 100644
--- a/doc/classes/Object.xml
+++ b/doc/classes/Object.xml
@@ -25,7 +25,7 @@
[b]Note:[/b] In a boolean context, an [Object] will evaluate to [code]false[/code] if it is equal to [code]null[/code] or it has been freed. Otherwise, an [Object] will always evaluate to [code]true[/code]. See also [method @GlobalScope.is_instance_valid].
- $DOCS_URL/contributing/development/core_and_modules/object_class.html
+ $DOCS_URL/engine_details/architecture/object_class.html
$DOCS_URL/tutorials/best_practices/node_alternatives.html
$DOCS_URL/tutorials/best_practices/godot_notifications.html
diff --git a/doc/classes/Variant.xml b/doc/classes/Variant.xml
index 813f7e6f03f..5c78dfe8c11 100644
--- a/doc/classes/Variant.xml
+++ b/doc/classes/Variant.xml
@@ -80,6 +80,6 @@
Modifications to a container will modify all references to it. A [Mutex] should be created to lock it if multi-threaded access is desired.
- $DOCS_URL/contributing/development/core_and_modules/variant_class.html
+ $DOCS_URL/engine_details/development/core_and_modules/variant_class.html
diff --git a/doc/tools/make_rst.py b/doc/tools/make_rst.py
index 1b2b3e2afa4..c5fe5a66a2f 100755
--- a/doc/tools/make_rst.py
+++ b/doc/tools/make_rst.py
@@ -67,16 +67,16 @@ BASE_STRINGS = [
"This method describes a valid operator to use with this type as left-hand operand.",
"This value is an integer composed as a bitmask of the following flags.",
"No return value.",
- "There is currently no description for this class. Please help us by :ref:`contributing one `!",
- "There is currently no description for this signal. Please help us by :ref:`contributing one `!",
- "There is currently no description for this enum. Please help us by :ref:`contributing one `!",
- "There is currently no description for this constant. Please help us by :ref:`contributing one `!",
- "There is currently no description for this annotation. Please help us by :ref:`contributing one `!",
- "There is currently no description for this property. Please help us by :ref:`contributing one `!",
- "There is currently no description for this constructor. Please help us by :ref:`contributing one `!",
- "There is currently no description for this method. Please help us by :ref:`contributing one `!",
- "There is currently no description for this operator. Please help us by :ref:`contributing one `!",
- "There is currently no description for this theme property. Please help us by :ref:`contributing one `!",
+ "There is currently no description for this class. Please help us by `contributing one `__!",
+ "There is currently no description for this signal. Please help us by `contributing one `__!",
+ "There is currently no description for this enum. Please help us by `contributing one `__!",
+ "There is currently no description for this constant. Please help us by `contributing one `__!",
+ "There is currently no description for this annotation. Please help us by `contributing one `__!",
+ "There is currently no description for this property. Please help us by `contributing one `__!",
+ "There is currently no description for this constructor. Please help us by `contributing one `__!",
+ "There is currently no description for this method. Please help us by `contributing one `__!",
+ "There is currently no description for this operator. Please help us by `contributing one `__!",
+ "There is currently no description for this theme property. Please help us by `contributing one `__!",
"There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.",
"Deprecated:",
"Experimental:",
@@ -979,7 +979,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this class. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this class. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1105,7 +1105,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this signal. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this signal. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1154,7 +1154,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this enum. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this enum. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1189,7 +1189,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this constant. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this constant. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1229,7 +1229,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this annotation. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this annotation. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1292,7 +1292,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this property. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this property. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1340,7 +1340,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this constructor. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this constructor. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1387,7 +1387,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this method. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this method. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1431,7 +1431,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this operator. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this operator. Please help us by `contributing one `__!"
)
+ "\n\n"
)
@@ -1476,7 +1476,7 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:
f.write(".. container:: contribute\n\n\t")
f.write(
translate(
- "There is currently no description for this theme property. Please help us by :ref:`contributing one `!"
+ "There is currently no description for this theme property. Please help us by `contributing one `__!"
)
+ "\n\n"
)
diff --git a/editor/doc/editor_help.cpp b/editor/doc/editor_help.cpp
index 156a436c965..dd7265f2238 100644
--- a/editor/doc/editor_help.cpp
+++ b/editor/doc/editor_help.cpp
@@ -66,7 +66,7 @@
#include "modules/mono/csharp_script.h"
#endif
-#define CONTRIBUTE_URL vformat("%s/contributing/documentation/updating_the_class_reference.html", GODOT_VERSION_DOCS_URL)
+#define CONTRIBUTE_URL "https://contributing.godotengine.org/en/latest/documentation/class_reference.html"
#ifdef MODULE_MONO_ENABLED
// Sync with the types mentioned in https://docs.godotengine.org/en/stable/tutorials/scripting/c_sharp/c_sharp_differences.html