-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
84 lines (79 loc) · 3.12 KB
/
app.html
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, height=device-height,initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<title>MdCraft - In-Browser Markdown Playground</title>
<link rel=“canonical” href=“https://mdcraft.vercel.app” />
<meta
name="description"
content="Elevate Your Note-Taking with MdCraft – Your Markdown-Powered App. Organize, Edit, and Store Notes Seamlessly with Real-Time Markdown Rendering."
/>
<meta
name="robots"
content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"
/>
<meta name="author" content="lovelin" />
<meta property="og:locale" content="en_US" />
<meta name="keywords" content="markdown,sveltekit, note-taking, offline" />
<meta name="og_site_name" content="MdCraft" />
<meta name="og:url" content="https://mdcraft.vercel.app" />
<meta name="og:title" content="MdCraft - In-Browser Markdown Playground" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="Elevate Your Note-Taking with MdCraft – Your Markdown-Powered App. Organize, Edit, and Store Notes Seamlessly with Real-Time Markdown Rendering."
/>
<meta
property="og:image"
content="https://ik.imagekit.io/lovelin/mdcraft/mdcraft?updatedAt=1696090057073"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="627" />
<meta property="og:image:alt" content="MdCraft-logo" />
<meta property="twitter:title" content="MdCraft - In-Browser Markdown Playground" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="mdcraft.vercel.app" />
<meta property="twitter:url" content="https://mdcraft.vercel.app" />
<meta name="twitter:creator" content="@lovelindhoni" />
<meta
name="twitter:description"
content="Elevate Your Note-Taking with MdCraft – Your Markdown-Powered App. Organize, Edit, and Store Notes Seamlessly with Real-Time Markdown Rendering."
/>
<meta
name="twitter:image"
content="https://ik.imagekit.io/lovelin/mdcraft/mdcraft?updatedAt=1696090057073"
/>
<meta property="twitter:image:alt" content="MdCraft-logo" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="%sveltekit.assets%/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="%sveltekit.assets%/icons/favicon-32x32.png"
/>
<link rel="mask-icon" href="%sveltekit.assets%/icons/safari-pinned-tab.svg" color="#f96743" />
<meta name="apple-mobile-web-app-title" content="MdCraft" />
<meta name="application-name" content="MdCraft" />
<meta name="msapplication-TileColor" content="#212121" />
<meta name="msapplication-config" content="%sveltekit.assets%/icons/browserconfig.xml" />
<meta name="theme-color" content="#212121" />
<link rel="manifest" href="%sveltekit.assets%/manifest.json" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>
<style>
body {
background-color: hsl(0, 0%, 13%);
}
</style>