-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (98 loc) 路 3.58 KB
/
Copy pathindex.html
File metadata and controls
103 lines (98 loc) 路 3.58 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description"
content="PrevueMD - A real-time Markdown editor built with Vue. Edit and visualize your Markdown documents instantly." />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color"
content="#171717" />
<meta name="mobile-web-app-capable"
content="yes">
<meta name="apple-mobile-web-app-capable"
content="yes">
<meta name="apple-mobile-web-app-status-bar-style"
content="black-translucent">
<meta name="apple-mobile-web-app-title"
content="PrevueMD">
<meta name="keywords"
content="markdown, editor, vue, markdown editor, real-time preview, markdown preview, documentation, writing, markdown syntax">
<meta name="author"
content="wazeerc">
<meta name="robots"
content="index, follow">
<!-- Open Graph / Social Media -->
<meta property="og:type"
content="website">
<meta property="og:title"
content="PrevueMD - A real-time Markdown editor">
<meta property="og:description"
content="A real-time Markdown editor built with Vue. Edit and visualize your Markdown documents instantly.">
<meta property="og:image"
content="/og-image.png">
<meta property="og:url"
content="https://prevuemd.com">
<meta property="og:site_name"
content="PrevueMD">
<meta name="twitter:card"
content="summary_large_image">
<meta name="twitter:title"
content="PrevueMD - A real-time Markdown editor">
<meta name="twitter:description"
content="A real-time Markdown editor built with Vue. Edit and visualize your Markdown documents instantly.">
<meta name="twitter:image"
content="/og-image.png">
<link rel="icon"
href="/markdown.png" />
<link rel="apple-touch-icon"
href="/icons/apple-icon-180.png">
<link rel="canonical"
href="https://prevuemd.com" />
<link rel="preload"
href="/fonts/DMSans-Regular.ttf"
as="font"
type="font/ttf"
crossorigin>
<link rel="preload"
href="/fonts/DMMono-Regular.ttf"
as="font"
type="font/ttf"
crossorigin>
<link rel="preload"
href="/fonts/DMSerif-Regular.ttf"
as="font"
type="font/ttf"
crossorigin>
<title>PrevueMD - A real-time Markdown editor</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "PrevueMD - A real-time Markdown editor",
"url": "https://prevuemd.com",
"description": "A real-time Markdown editor built with Vue. Edit and visualize your Markdown documents instantly.",
"applicationCategory": "Productivity",
"operatingSystem": "Web",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": "Real-time markdown editing",
"softwareVersion": "1.0.0",
"screenshot": "https://prevuemd.com/og-image.png",
"author": {
"@type": "Person",
"name": "wazeerc"
},
"inLanguage": "en"
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module"
src="/src/main.ts"></script>
</body>
</html>