Godot 4.5 release page

Huge thanks to JohnVeness, AThousandShips, and Meorge for their
great help rewording my broken English.
This commit is contained in:
Adam Scott
2025-06-22 12:58:20 -04:00
parent c9f1406413
commit 5387797774
177 changed files with 6699 additions and 394 deletions

View File

@@ -83,7 +83,7 @@
document.addEventListener('DOMContentLoaded', () => {
// This needs to be done on page load but also after page changes,
// in case a code block appears in an article.
document.querySelectorAll('pre code').forEach((block) => {
document.querySelectorAll('pre:not(.manual) code').forEach((block) => {
hljs.highlightBlock(block);
});