mirror of
https://github.com/doocs/md.git
synced 2024-11-24 11:00:33 +08:00
100 lines
2.9 KiB
HTML
100 lines
2.9 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta name="keywords" content="md,markdown,markdown-editor,wechat,official-account,yanglbme,doocs" />
|
|
<meta name="description" content="Wechat Markdown Editor | 一款高度简洁的微信 Markdown 编辑器" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
|
|
/>
|
|
<title>微信 Markdown 编辑器 | Doocs 开源社区</title>
|
|
<link rel="shortcut icon" href="https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/md/images/favicon.png" />
|
|
<link
|
|
rel="apple-touch-icon-precomposed"
|
|
href="https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/doocs/md/images/1648303220922-7e14aefa-816e-44c1-8604-ade709ca1c69.png"
|
|
/>
|
|
<style>
|
|
.loading {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 99999;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.loading::before {
|
|
content: url('/src/assets/images/favicon.png');
|
|
width: 100px;
|
|
height: 100px;
|
|
margin-bottom: 26px;
|
|
}
|
|
|
|
.loading.dark {
|
|
color: #ffffff;
|
|
background-color: #141414;
|
|
}
|
|
|
|
.loading .txt {
|
|
position: absolute;
|
|
bottom: 10%;
|
|
}
|
|
|
|
.loading .txt::after {
|
|
content: '...';
|
|
animation: dots 1.5s steps(4, end) infinite;
|
|
}
|
|
|
|
@keyframes dots {
|
|
0% {
|
|
content: ' ';
|
|
}
|
|
25% {
|
|
content: '.';
|
|
}
|
|
50% {
|
|
content: '..';
|
|
}
|
|
75% {
|
|
content: '...';
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<noscript>
|
|
<strong>Please enable JavaScript to continue.</strong>
|
|
</noscript>
|
|
<div id="app">
|
|
<div class="loading">
|
|
<strong>致力于让 Markdown 编辑更简单</strong>
|
|
<p class="txt">正在加载编辑器</p>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
const theme = localStorage.getItem('vueuse-color-scheme')
|
|
if (theme === 'dark' || (theme === 'auto' && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
|
document.querySelector('.loading').classList.add('dark')
|
|
}
|
|
</script>
|
|
<script>
|
|
MathJax = {
|
|
loader: { load: ['[tex]/ams'] },
|
|
tex: { packages: { '[+]': ['ams'] }, tags: 'ams' },
|
|
svg: { fontCache: 'none' },
|
|
}
|
|
</script>
|
|
<script id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"></script>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
<script src="https://cdn-doocs.oss-cn-shenzhen.aliyuncs.com/gh/wechatsync/article-syncjs@latest/dist/main.js"></script>
|
|
</html>
|