Updated Wiki content

OrcaSlicerBot
2026-01-21 18:41:24 +00:00
parent 60e31ea445
commit 4151489374
2 changed files with 17 additions and 5 deletions

@@ -207,10 +207,16 @@ Get-ChildItem -Path wiki -Filter *.html -Recurse | Where-Object { $_.Name -ne 'i
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=$encodedUrl"> <meta http-equiv="refresh" content="0; url=$encodedUrl">
<link rel="canonical" href="$encodedUrl"> <link rel="canonical" href="$encodedUrl">
<script>window.location.replace("$encodedUrl");</script> <script>
(function() {
var hash = window.location.hash || "";
var target = "$encodedUrl" + hash;
window.location.replace(target);
})();
</script>
</head> </head>
<body> <body>
<p>Redirecting to <a href="$encodedUrl">$filename</a>...</p> <p>Redirecting to <a href="$encodedUrl">$filename</a>...</p>

@@ -183,7 +183,13 @@ create_redirects() {
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=${encoded_url}"> <meta http-equiv="refresh" content="0; url=${encoded_url}">
<link rel="canonical" href="${encoded_url}"> <link rel="canonical" href="${encoded_url}">
<script>window.location.replace("${encoded_url}");</script> <script>
(function() {
var hash = window.location.hash || "";
var target = "${encoded_url}" + hash;
window.location.replace(target);
})();
</script>
</head> </head>
<body> <body>
<p>Redirecting to <a href="${encoded_url}">${filename}</a>...</p> <p>Redirecting to <a href="${encoded_url}">${filename}</a>...</p>