Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2dba0ff

Browse files
committedMar 22, 2025·
fix: html redirect from old /demo url
1 parent 929ec02 commit 2dba0ff

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed
 

‎demos/html-demo/demo/index.html

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<title>JsonDiffPatch</title>
6+
<meta name="description"
7+
content="JsonDiffPatch is a free online json diff tool and npm library to compare json and get a json diff" />
8+
<meta name="viewport" content="width=device-width, initial-scale=1" />
9+
<link rel="canonical" href="https://jsondiffpatch.com/" />
10+
<link rel="icon" href="logo.svg" type="image/svg+xml" />
11+
12+
<meta name="twitter:card" content="summary_large_image" />
13+
<meta name="twitter:creator" content="@beneidel" />
14+
<meta name="twitter:title" content="JsonDiffPatch" />
15+
<meta name="twitter:description"
16+
content="JsonDiffPatch is a free online json diff tool and npm library to compare json and get a json diff." />
17+
<meta name="twitter:image" content="https://jsondiffpatch.com/jsondiffpatch-visual-diff.png" />
18+
<meta property="og:type" content="website" />
19+
<meta property="og:title" content="JsonDiffPatch" />
20+
<meta property="og:description"
21+
content="JsonDiffPatch is a free online json diff tool and npm library to compare json and get a json diff." />
22+
<meta property="og:locale" content="en_US" />
23+
<meta property="og:url" content="http://jsondiffpatch/" />
24+
<meta property="og:image" content="https://jsondiffpatch.com/jsondiffpatch-visual-diff.png" />
25+
<meta property="og:image:type" content="image/png" />
26+
<meta property="og:image:width" content="774" />
27+
<meta property="og:image:height" content="774" />
28+
29+
<meta name="color-scheme" content="dark light" />
30+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
31+
<meta content="utf-8" http-equiv="encoding" />
32+
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
33+
34+
<noscript>
35+
<meta id="redirect" http-equiv="refresh" content="0; url=http://jsondiffpatch.com">
36+
</noscript>
37+
<script>
38+
(function () {
39+
window.location = "https://jsondiffpatch.com" + window.location.search + window.location.hash;
40+
})();
41+
</script>
42+
</head>
43+
44+
<body>
45+
moved to to <a href="https://jsondiffpatch.com">https://jsondiffpatch.com</a>
46+
</body>
47+
48+
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.