-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlegacy.html
More file actions
106 lines (100 loc) · 3.96 KB
/
Copy pathlegacy.html
File metadata and controls
106 lines (100 loc) · 3.96 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SharpAdb Wiki</title>
<meta name="description" content="The wiki of SharpAdb Projects">
<base href="/legacy.html" />
<link rel="apple-touch-icon" sizes="180x180"
href="https://github.com/SharpAdb/SharpAdb.github.io/assets/27689196/958d3288-c356-4793-b78a-57d0f6527bae">
<link rel="icon" type="image/png" sizes="32x32"
href="https://github.com/SharpAdb/SharpAdb.github.io/assets/27689196/db268f7a-3ddc-4a4b-a362-df6a4307aaea">
<link rel="icon" type="image/png" sizes="16x16"
href="https://github.com/SharpAdb/SharpAdb.github.io/assets/27689196/918e6bfe-ae35-4588-87c4-a118500bbc16">
<link rel="mask-icon"
href="https://github.com/SharpAdb/SharpAdb.github.io/assets/27689196/f6d2261d-0ce2-4cc8-8246-bbccc0705c66"
color="#202020">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-darklight-theme/dist/style.min.css"
title="docsify-darklight-theme" />
<style>
@media screen and (max-width: 768px) {
#docsify-darklight-theme {
left: auto;
}
}
</style>
</head>
<body>
<div id="app">Loading...</div>
<script>
window.$docsify = {
alias: {
'/.*/_sidebar.md': './_sidebar.md'
},
auto2top: true,
basePath: './source/',
executeScript: true,
homepage: 'introduction.md',
loadSidebar: true,
name: 'AdvancedSharpAdbClient',
nativeEmoji: true,
search: {
depth: 3,
noData: 'No results!',
placeholder: 'Search...'
},
darklightTheme: {
defaultTheme: 'dark',
}
}
</script>
<!-- Docsify v4 -->
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-darklight-theme/dist/index.min.js"></script>
<!-- Prism.JS -->
<script src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-bash.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-csharp.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-powershell.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs/components/prism-python.min.js"></script>
<!-- Fallback -->
<script>
if (typeof CSS === "undefined" || typeof CSS.supports === "undefined" || !CSS.supports("--a", 0)) {
function addScript(src) {
var script = document.createElement("script");
script.src = src;
var parentNode = document.head || document.scripts[0].parentNode;
parentNode.appendChild(script);
return script;
}
var script = addScript("https://cdn.jsdelivr.net/npm/css-vars-ponyfill");
script.onload = function () {
cssVars({
variables: {
"--siteFont": "PT Sans",
"--codeFontFamily": "Roboto Mono, Monaco, courier, monospace",
"--bodyFontSize": "17px",
"--accent": "#42b983",
"--theme-color": "#42b983",
"--toogleBackground": "#091a28",
"--background": "#ffffff",
"--textColor": "#34495e",
"--codeTextColor": "#525252",
"--codeBackgroundColor": "#f8f8f8",
"--borderColor": "rgba(0, 0, 0, 0.07)",
"--blockQuoteColor": "#858585",
"--highlightColor": "#d22778",
"--sidebarSublink": "#505d6b",
"--codeTypeColor": "#091a28",
"--coverBackground": "linear-gradient(to left bottom, hsl(118, 100%, 85%) 0%, hsl(181, 100%, 85%) 100%)",
"--toogleImage": "url(https://cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/icons/moon.svg)"
},
watch: true
});
};
}
</script>
</body>
</html>