mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-27 15:15:23 +00:00
Updated Wiki content
@@ -210,7 +210,13 @@ Get-ChildItem -Path wiki -Filter *.html -Recurse | Where-Object { $_.Name -ne 'i
|
|||||||
<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>
|
||||||
|
|||||||
8
build.sh
8
build.sh
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user