-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathspeak-demo.html
50 lines (49 loc) · 1.67 KB
/
speak-demo.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
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://lf6-cdn-tos.bytecdntp.com/cdn/expire-1-M/highlight.js/10.6.0/styles/atom-one-dark.min.css"
/>
<!-- CSS -->
<link
href="https://unpkg.com/[email protected]/dist/Artalk.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./dist/style.css" />
<script src="https://cdn.staticfile.org/highlight.js/11.6.0/highlight.min.js"></script>
<script src="https://cdn.staticfile.org/marked/2.0.0/marked.min.js"></script>
<!-- JS -->
<title>Document</title>
<div id="ispeak"></div>
<script src="./dist/ispeak.umd.js"></script>
<script>
ispeak.init({
el: '#ispeak',
api: 'https://kkapi.vercel.app/',
author: '61fe93508fd621d39a155725',
pageSize: 10,
loading_img: 'https://bu.dusays.com/2022/05/01/626e88f349943.gif',
githubClientId: 'Iv1.1a4e5a689816a636',
hideComment: false,
comment: function (speak) {
const { _id, title, content } = speak
const contentSub = content.substring(0, 30)
// @ts-ignore
new Artalk({
el: '.ispeak-comment',
pageKey: '/speak/info.html#' + _id,
pageTitle: title || contentSub,
server: 'https://api.antmoe.com/artalk/',
site: 'speak' // 你的站点名
})
}
})
</script>
</head>
<body></body>
</html>