Skip to content

Commit a5a6bda

Browse files
committed
docs: add docsify support
1 parent b176e50 commit a5a6bda

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

.nojekyll

Whitespace-only changes.

index.html

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>litefs - leafcoder</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
<meta name="description" content="Litefs is a lite python web framework.">
8+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
9+
<!-- <link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css"> -->
10+
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css">
11+
<script data-ad-client="ca-pub-9406265482044737" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
12+
<script>
13+
var _hmt = _hmt || [];
14+
(function() {
15+
var hm = document.createElement("script");
16+
hm.src = "https://hm.baidu.com/hm.js?f3fbccf0789476b80fab0c58359399a5";
17+
var s = document.getElementsByTagName("script")[0];
18+
s.parentNode.insertBefore(hm, s);
19+
})();
20+
</script>
21+
</head>
22+
<body>
23+
<div id="app"></div>
24+
<script>
25+
window.$docsify = {
26+
name: 'litefs',
27+
repo: 'https://github.com/leafcoder/litefs'
28+
}
29+
</script>
30+
<script src="//unpkg.com/docsify/lib/docsify.min.js" data-ga="UA-54353519-1"></script>
31+
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
32+
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-python.min.js"></script>
33+
<script src="//cdn.jsdelivr.net/npm/prismjs/components/prism-json.min.js"></script>
34+
<!-- Place this tag in your head or just before your close body tag. -->
35+
<script async defer src="https://buttons.github.io/buttons.js"></script>
36+
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/ga.min.js"></script>
37+
38+
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/gitalk/dist/gitalk.css">
39+
40+
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/gitalk.min.js"></script>
41+
<script src="//cdn.jsdelivr.net/npm/gitalk/dist/gitalk.min.js"></script>
42+
<script>
43+
const gitalk = new Gitalk({
44+
clientID: '93351e163e1c7e8d32b9',
45+
clientSecret: 'dbd20b4a37f1c0a0eeda588998fd3f3e62746880',
46+
repo: 'litefs',
47+
owner: 'leafcoder',
48+
admin: ['leafcoder'],
49+
id: location.pathname,
50+
distractionFreeMode: false
51+
})
52+
</script>
53+
54+
</body>
55+
</html>
56+

0 commit comments

Comments
 (0)