-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (59 loc) · 2.37 KB
/
index.html
File metadata and controls
61 lines (59 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="./favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
在线 JSON 格式化工具 | JSON Visualizer & Formatter - Json Formatter
</title>
<meta
name="description"
content="一个免费的在线 JSON 格式化和可视化工具,支持高亮显示、折叠、自动缩进。A free online tool for formatting and visualizing JSON data."
/>
<meta
name="keywords"
content="JSON格式化, JSON查看器, JSON可视化工具, format json online, json beautifier, json visualizer, json viewer, json viewer online, json online, json online viewer, json online tool, json tool, json, json editor, json editor online, json editor tool, json editor tool online, json editor online tool online, json editor online tool, JSON在线格式化工具, JSON在线查看器, JSON在线可视化工具, JSON在线工具, JSON在线编辑器, JSON在线编辑器工具, JSON在线, JSON工具, JSON可视化"
/>
<link rel="canonical" href="https://bluesky335.github.io/json-formatter/" />
<!-- JSON-LD structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Json Formatter",
"url": "https://bluesky335.github.io/json-formatter/"
}
</script>
<!-- FAQ 结构化数据 -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "如何使用这个 JSON 工具?",
"acceptedAnswer": {
"@type": "Answer",
"text": "将你的 JSON 粘贴到左侧文本框,点击格式化,即可查看结构化结果。"
}
},
{
"@type": "Question",
"name": "Is this JSON tool free to use?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, this JSON formatter and visualizer is completely free and available online with no login required."
}
}
]
}
</script>
</head>
<%- GoogleAnalytics %>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>