-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (51 loc) · 2.93 KB
/
index.html
File metadata and controls
59 lines (51 loc) · 2.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<meta name="description" content="ParseBox - Text formatting and manipulation made simple. Transform text from one format to many others" />
<meta name="keywords" content="text formatter, text editor, encoder, json, xml, csv, xlsx, arrays" />
<meta name="author" content="therecluse26" />
<!-- Open Graph Meta Tags for social sharing -->
<meta property="og:title" content="ParseBox - Text Formatting Made Simple" />
<meta property="og:description" content="Transform text from one format to many others using ParseBox." />
<meta property="og:image" content="/parsebox-logo.svg" />
<meta property="og:url" content="https://parsebox.app" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="ParseBox - Text Formatting Made Simple" />
<meta name="twitter:description" content="Transform text from one format to many others using ParseBox." />
<meta name="twitter:image" content="/parsebox-logo.svg" />
<!-- Schema.org JSON-LD -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "ParseBox",
"applicationCategory": "Text Formatter",
"description": "Text formatting and manipulation made simple",
"operatingSystem": "Web"
}
</script>
<title>ParseBox - Text Formatting Made Simple</title>
<link rel="canonical" href="https://parsebox.app" />
<meta name="robots" content="index, follow" />
<!-- Highlight.js for syntax highlighting -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css" />
<!-- Adsense -->
<!-- End Adsense -->
</head>
<body class="min-h-screen">
<div id="root" class="relative flex min-h-screen flex-col"></div>
<script type="module" src="/src/main.tsx"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.4.1/papaparse.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/json.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/xml.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/yaml.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/ini.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/toml.min.js"></script>
</body>
</html>