-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 2.54 KB
/
index.html
File metadata and controls
71 lines (71 loc) · 2.54 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Documentation for DOS Network - Decentralized Oracle Service Network</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<!-- link rel="stylesheet" href="https://unpkg.com/docsify-themeable/dist/css/theme-simple-dark.css" -->
<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
<!--style>
.markdown-section a {
color: #f38f02;
}
</style-->
<link rel="shortcut icon" href="_media/favicon.ico">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'DOS NETWORK',
// themeColor: '#dabf99',
repo: 'https://github.com/DOSNetwork/docs',
homepage: '/homepage.md',
logo: '/_media/logo-transparent.png',
search: 'auto',
loadSidebar: true,
alias: {
'/.*/_sidebar.md': '/_sidebar.md'
},
auto2top: true,
subMaxLevel: 2,
coverpage: true,
formatUpdated: '{MM}/{DD}/{YYYY}',
tabs: {
persist: true,
sync: true,
tabHeadings: true
},
plugins: [
function (hook, vm) {
hook.beforeEach(function (html) {
var url
if (/githubusercontent\.com/.test(vm.route.file)) {
url = vm.route.file
.replace('raw.githubusercontent.com', 'github.com')
.replace(/\/master/, '/blob/master')
} else {
url = 'https://github.com/DOSNetwork/docs/blob/master/' + vm.route.file
}
var editHtml = '[:memo: Edit Document](' + url + ')\n'
return html
+ '\n\n----\n\n'
+ 'Last modified {docsify-updated} '
+ editHtml
})
}
]
}
</script>
<script src="https://unpkg.com/docsify@4.11.3/lib/docsify.min.js"></script>
<!-- script src="https://unpkg.com/docsify/lib/docsify.min.js"></script -->
<script src="https://unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="https://unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<script src="https://unpkg.com/docsify-tabs@1"></script>
<script src="https://unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-solidity.min.js"></script>
</body>
</html>