-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (99 loc) · 4.24 KB
/
index.html
File metadata and controls
106 lines (99 loc) · 4.24 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
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="MarkDown Live is a privacy-first markdown editor for turning raw markdown and AI output into professional, print-ready documents with Mermaid, KaTeX, and zero tracking."
/>
<meta
name="keywords"
content="markdown editor, markdown to document, AI markdown, Mermaid, KaTeX, print-ready documents, privacy-first, open source, no analytics"
/>
<meta name="author" content="MarkDown Live" />
<meta name="robots" content="index,follow" />
<meta name="theme-color" content="#003D99" />
<meta name="application-name" content="MarkDown Live" />
<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="default" />
<meta name="apple-mobile-web-app-title" content="MD Live" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="MarkDown Live" />
<meta property="og:site_name" content="MarkDown Live" />
<meta
property="og:description"
content="Turn raw markdown and AI output into professional, print-ready documents with Mermaid, KaTeX, and zero tracking."
/>
<meta property="og:url" content="https://markdown-live.wanforge.asia/" />
<meta property="og:image" content="https://markdown-live.wanforge.asia/icon.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="MarkDown Live logo" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="MarkDown Live" />
<meta
name="twitter:description"
content="Privacy-first markdown editor for professional, print-ready documents with Mermaid, KaTeX, and live preview."
/>
<meta
name="twitter:image"
content="https://markdown-live.wanforge.asia/preview.png"
/>
<meta name="twitter:image:alt" content="MarkDown Live editor screenshot" />
<title>MarkDown Live</title>
<!-- Canonical -->
<link rel="canonical" href="https://markdown-live.wanforge.asia/" />
<!-- Icons & Manifest -->
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<link rel="alternate icon" type="image/png" href="/icon.png" />
<link rel="apple-touch-icon" href="/icon.png" />
<link rel="manifest" href="/manifest.json" />
<!-- Self-hosted vendor CSS (offline-capable) -->
<link rel="stylesheet" href="/vendor/atom-one-light.min.css" />
<link rel="stylesheet" href="/vendor/katex.min.css" />
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "MarkDown Live",
"url": "https://markdown-live.wanforge.asia/",
"description": "Privacy-first markdown editor for turning raw markdown and AI output into professional, print-ready documents with Mermaid, KaTeX, and zero tracking.",
"applicationCategory": "ProductivityApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires a modern web browser with JavaScript enabled.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "WanForge",
"url": "https://wanforge.asia"
},
"featureList": [
"Live markdown preview",
"KaTeX math rendering",
"Mermaid diagram support",
"Export to PDF and HTML",
"Privacy-first, no tracking",
"Offline access via PWA",
"Dark and light mode"
],
"screenshot": "https://markdown-live.wanforge.asia/preview.png",
"softwareVersion": "0.2.0",
"license": "https://opensource.org/licenses/MIT"
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>