This repository has been archived by the owner on Aug 2, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 308
/
index.html
44 lines (43 loc) · 1.63 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<meta name="google-site-verification" content="oxhhDvpA1MPfVPqOJeWn4tCZ8lZoaRgUuYHcYWkLtSg">
<title>CQHTTP 插件</title>
<link href="https://unpkg.com/docute@3/dist/docute.css" rel="stylesheet">
<link href="./docs/main.css" rel="stylesheet">
</head>
<body>
<div id="app"></div>
<script src="https://unpkg.com/docute@3/dist/docute.js"></script>
<script src="https://unpkg.com/prismjs/components/prism-bash.min.js"></script>
<script>
docute.init({
repo: 'richardchien/coolq-http-api',
nav: [
{ title: '首页', path: '/' },
{ title: '文档', path: window.location.origin + window.location.pathname + 'docs/' },
{ title: '版本发布', path: 'https://github.com/richardchien/coolq-http-api/releases' }
],
tocVisibleDepth: 2,
sidebar: false,
routerMode: 'history',
url: /(github|gitee)\.io$/.test(window.location.origin) ? window.location.origin + '/coolq-http-api' : window.location.origin
});
</script>
<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-115509121-1', 'auto');
ga('send', 'pageview');
docute.router.afterEach(function (to) {
ga('set', 'page', to.fullPath);
ga('send', 'pageview');
});
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
<!-- End Google Analytics -->
</body>
</html>