-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 1.19 KB
/
Copy pathindex.html
File metadata and controls
35 lines (30 loc) · 1.19 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File2MD - 文件转Markdown转换器</title>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<!-- Meta Tags -->
<meta name="description" content="在线文件转Markdown工具,支持TXT、PDF、Word、Excel等多种格式转换">
<meta name="keywords" content="Markdown,转换器,PDF转Markdown,Word转Markdown,文档转换">
<meta name="author" content="File2MD">
<!-- Open Graph -->
<meta property="og:title" content="File2MD - 文件转Markdown转换器">
<meta property="og:description" content="在线文件转Markdown工具,支持多种格式">
<meta property="og:type" content="website">
<!-- 主题色 -->
<meta name="theme-color" content="#ff9a56">
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>