-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (110 loc) · 3.95 KB
/
Copy pathindex.html
File metadata and controls
121 lines (110 loc) · 3.95 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="">
<link rel="icon" href="_media/crest_black.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!-- Auto system colour, no-one changes from preference... -->
<link rel="stylesheet" media="(prefers-color-scheme: light)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<style>
:root {
/* Change the theme color hue (0-360) */
--theme-hue: 325;
--heading-h2-border-style: none;
}
</style>
</head>
<body>
<div data-app id="app">Loading...</div>
<style>
/* Fix issue on mobile devices where a custom cover image goes off the screen. */
section.cover.show {
height: 100%;
}
</style>
<script>
var repoURL = "https://github.com/DiagnosticsMonkey/Docs-VersionControl";
var pagePrefix = "Version Control";
// Docsify Configuration
window.$docsify = {
name: pagePrefix,
repo: repoURL,
customPageTitle: {
prefix: pagePrefix,
suffix: false,
separator: '-',
},
subMaxLevel: 3,
loadNavbar: false,
coverpage: true,
onlyCover: false,
loadSidebar: true,
auto2top: true,
githubEditLink: {
repo: repoURL,
branch: "trunk",
},
footer: {
copy: '© James Marsden, 2024<br />',
auth: 'TAKTAK - taktak.co.uk',
pre: '<hr />',
style: 'text-align: right;',
class: 'footer',
},
themeable: {
readyTransition : true, // default
responsiveTables: true // default
},
tabs: {
tabComments: false,
},
'flexible-alerts': {
style: 'callout',
},
pagination: {
previousText: 'PREVIOUS',
nextText: 'NEXT',
crossChapter: true,
crossChapterText: true,
},
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<!-- docsify-themeable -->
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<!-- Text search -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<!-- Title config -->
<script src="//cdn.jsdelivr.net/npm/@sujaykumarh/docsify-plugin-title@2.x/dist/plugin.min.js"></script>
<!-- Pagination plugin -->
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<!-- Footer -->
<script src="//unpkg.com/docsify-footer-enh/dist/docsify-footer-enh.min.js"></script>
<!-- Edit in GitHub -->
<script src="//cdn.jsdelivr.net/npm/docsify-github-edit-link@1/dist/github-edit-link.min.js"></script>
<!-- Tip / note blocks -->
<script src="//unpkg.com/docsify-plugin-flexible-alerts"></script>
<!-- docsify-tabs (latest v1.x.x) -->
<script src="//cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<!-- Zoom image -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
<!-- Code copy -->
<script src="//unpkg.com/docsify-copy-code@2"></script>
<!-- Syntax highlighting.-->
<script defer src="//unpkg.com/prismjs@1/components/prism-markdown.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-bash.min.js"></script>
<!-- Terminal block -->
<script src="//cdn.jsdelivr.net/npm/docsify-terminal-block@1.0.3"></script>
<script type="module">
import mermaid from "https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs";
mermaid.initialize({ startOnLoad: true });
window.mermaid = mermaid;
</script>
<script src="//unpkg.com/docsify-mermaid@2.0.1/dist/docsify-mermaid.js"></script>
</body>
</html>