Merge pull request #71 from Calinou/godot-areas-extension-parallel-safe

Mark the Godot Areas Sphinx extension as parallel-safe for faster builds
This commit is contained in:
Lukas Tenbrink
2026-02-23 21:02:30 +01:00
committed by GitHub

View File

@@ -115,3 +115,8 @@ class TeamRole(XRefRole):
def setup(app):
app.add_directive('gdareatable', TableDirective)
app.add_role('team', TeamRole())
return {
"parallel_read_safe": True,
"parallel_write_safe": True,
}