forked from rcore-os/rCore-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitalk.html
More file actions
22 lines (22 loc) · 741 Bytes
/
gitalk.html
File metadata and controls
22 lines (22 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<link rel="stylesheet" href="https://unpkg.com/gitalk/dist/gitalk.css">
<script src="https://unpkg.com/gitalk/dist/gitalk.min.js"></script>
<div id="gitalk-container"></div>
<script>
var gitalk = new Gitalk({
clientID: "5084c46751a4b2f7cd4d",
clientSecret: "3904f62d33aef24f19480fedc836a48b31d532e9",
repo: "rCore-Tutorial-deploy",
owner: "rcore-os",
admin: [
"chyyuu",
"wangrunji0408",
"xy-plus",
"wyfcyx",
"LyricZhao",
"Tuyixiang"
],
id: location.pathname.replace('/rCore-Tutorial-deploy', '').replace('.html', ''),
distractionFreeMode: false
});
gitalk.render("gitalk-container");
</script>