-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 3.2 KB
/
Copy pathindex.html
File metadata and controls
68 lines (62 loc) · 3.2 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/src/assets/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
<link rel="icon" type="image/png" sizes="32x32" href="/src/assets/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/src/assets/favicon-16x16.png" />
<!-- SEO Meta Tags -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="MarkFlow Lite - 一个纯前端在线 Markdown 编辑器,支持实时编辑、双向预览、流程图渲染、数学公式、代码高亮等功能。无需服务器,开箱即用。">
<meta name="keywords" content="Markdown编辑器,在线编辑器,流程图,Mermaid,数学公式,代码高亮,实时预览,纯前端,无需服务器">
<meta name="author" content="MarkFlow Lite Team">
<meta name="robots" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://editor.currso.com/">
<meta property="og:title" content="MarkFlow Lite - 在线 Markdown 编辑器">
<meta property="og:description" content="一个纯前端在线 Markdown 编辑器,支持实时编辑、双向预览、流程图渲染、数学公式、代码高亮等功能。无需服务器,开箱即用。">
<meta property="og:image" content="https://editor.currso.com/src/assets/logo.svg">
<meta property="og:locale" content="zh_CN">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://editor.currso.com/">
<meta property="twitter:title" content="MarkFlow Lite - 在线 Markdown 编辑器">
<meta property="twitter:description" content="一个纯前端在线 Markdown 编辑器,支持实时编辑、双向预览、流程图渲染、数学公式、代码高亮等功能。无需服务器,开箱即用。">
<meta property="twitter:image" content="https://editor.currso.com/src/assets/logo.svg">
<!-- Canonical URL -->
<link rel="canonical" href="https://editor.currso.com/">
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "MarkFlow Lite",
"url": "https://editor.currso.com/",
"description": "一个纯前端在线 Markdown 编辑器,支持实时编辑、双向预览、流程图渲染、数学公式、代码高亮等功能。无需服务器,开箱即用。",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"实时编辑",
"双向预览",
"流程图渲染",
"数学公式支持",
"代码高亮",
"本地存储",
"文件导出"
]
}
</script>
<title>MarkFlow Lite - 在线 Markdown 编辑器</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>