-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathindex.html
More file actions
215 lines (202 loc) · 7.56 KB
/
index.html
File metadata and controls
215 lines (202 loc) · 7.56 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<!-- Preconnect for faster API calls -->
<link rel="preconnect" href="https://convex.cloud" crossorigin />
<link rel="dns-prefetch" href="https://convex.cloud" />
<!-- Preconnect for Convex site endpoints -->
<link rel="preconnect" href="https://convex.site" crossorigin />
<link rel="dns-prefetch" href="https://convex.site" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<meta
name="description"
content="An open-source publishing framework built for AI agents and developers to ship websites, docs, or blogs. Write markdown, sync from the terminal. Your content is instantly available to browsers, LLMs, and AI agents. Built on Convex." />
<meta name="author" content="markdown sync publishing framework" />
<meta
name="keywords"
content="markdown site, Convex, Netlify, React, TypeScript, open source, real-time, sync" />
<meta name="robots" content="index, follow" />
<!-- Canonical URL -->
<link rel="canonical" href="https://www.markdown.fast/" />
<!-- Hreflang for language/region targeting -->
<link rel="alternate" hreflang="en" href="https://www.markdown.fast/" />
<link rel="alternate" hreflang="x-default" href="https://www.markdown.fast/" />
<!-- Theme -->
<meta name="theme-color" content="#faf8f5" />
<!-- Critical CSS - inlined for fast first paint -->
<style>
/* Theme variables */
:root[data-theme="dark"] {
--bg-primary: #111;
--bg-secondary: #1a1a1a;
--bg-hover: #252525;
--text-primary: #fafafa;
--text-secondary: #a1a1a1;
--text-muted: #6b6b6b;
--border-color: #2a2a2a;
--accent: #fafafa;
}
:root[data-theme="light"] {
--bg-primary: #fff;
--bg-secondary: #fafafa;
--bg-hover: #f5f5f5;
--text-primary: #111;
--text-secondary: #6b6b6b;
--text-muted: #a1a1a1;
--border-color: #e5e5e5;
--accent: #111;
}
:root[data-theme="tan"] {
--bg-primary: #faf8f5;
--bg-secondary: #f5f3f0;
--bg-hover: #ebe9e6;
--text-primary: #1a1a1a;
--text-secondary: #6b6b6b;
--text-muted: #999;
--border-color: #e6e4e1;
--accent: #8b7355;
}
:root[data-theme="cloud"] {
--bg-primary: #f5f5f5;
--bg-secondary: #ebebeb;
--bg-hover: #e0e0e0;
--text-primary: #171717;
--text-secondary: #525252;
--text-muted: #737373;
--border-color: #d4d4d4;
--accent: #171717;
}
/* Reset and base */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
body {
font-family:
"New York",
-apple-system-ui-serif,
ui-serif,
Georgia,
serif;
background-color: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
}
/* Layout skeleton */
.layout {
min-height: 100vh;
display: flex;
flex-direction: column;
padding-top: 60px;
}
.main-content {
flex: 1;
max-width: 800px;
width: 100%;
margin: 0 auto;
}
/* Fixed nav */
.top-nav {
position: fixed;
top: 0;
left: 13px;
right: 13px;
z-index: 100;
display: flex;
align-items: center;
gap: 16px;
background-color: var(--bg-primary);
padding: 8px 12px;
border-radius: 8px;
}
@media (max-width: 1024px) {
.layout {
padding: 60px 15px 15px;
}
}
</style>
<!-- Theme initialization - runs before any rendering to prevent FOUC -->
<script>
(function () {
var theme = "tan";
try {
var saved = localStorage.getItem("blog-theme");
if (saved && ["dark", "light", "tan", "cloud"].includes(saved)) {
theme = saved;
}
} catch (e) {}
document.documentElement.setAttribute("data-theme", theme);
var colors = { dark: "#111111", light: "#ffffff", tan: "#faf8f5", cloud: "#f5f5f5" };
var meta = document.querySelector('meta[name="theme-color"]');
if (meta) meta.setAttribute("content", colors[theme] || colors.tan);
})();
</script>
<!-- Open Graph -->
<meta property="og:title" content="markdown sync publishing framework" />
<meta
property="og:description"
content="An open-source publishing framework built for AI agents and developers to ship websites, docs, or blogs. Write markdown, sync from the terminal. Your content is instantly available to browsers, LLMs, and AI agents. Built on Convex." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.markdown.fast/" />
<meta property="og:site_name" content="markdown sync publishing framework" />
<meta property="og:image" content="https://www.markdown.fast/images/og-default.png" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="www.markdown.fast" />
<meta property="twitter:url" content="https://www.markdown.fast/" />
<meta name="twitter:title" content="markdown sync publishing framework" />
<meta
name="twitter:description"
content="An open-source publishing framework built for AI agents and developers to ship websites, docs, or blogs. Write markdown, sync from the terminal. Your content is instantly available to browsers, LLMs, and AI agents. Built on Convex." />
<meta name="twitter:image" content="https://www.markdown.fast/images/og-default.png" />
<!-- twitter:site - configure in siteConfig.ts for your Twitter handle -->
<meta name="twitter:site" content="" />
<meta name="twitter:creator" content="" />
<!-- RSS Feeds -->
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/rss.xml" />
<link
rel="alternate"
type="application/rss+xml"
title="RSS Feed (Full Content)"
href="/rss-full.xml" />
<!-- LLM and AI Discovery -->
<link rel="author" href="/llms.txt" />
<!-- JSON-LD Structured Data for Homepage -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "markdown sync framework",
"url": "https://www.markdown.fast",
"description": "An open-source publishing framework built for AI agents and developers to ship websites, docs, or blogs. Write markdown, sync from the terminal. Your content is instantly available to browsers, LLMs, and AI agents. Built on Convex.",
"author": {
"@type": "Organization",
"name": "markdown sync framework",
"url": "https://www.markdown.fast"
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.markdown.fast/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<title>markdown "sync" framework</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Rybbit Analytics -->
<script src="https://app.rybbit.io/api/script.js" data-site-id="24731ca420a4" defer></script>
</body>
</html>