-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (68 loc) · 2.59 KB
/
index.html
File metadata and controls
77 lines (68 loc) · 2.59 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
<!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, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover">
<meta name="description" content="Documentation for docx template">
<title>Docx Template Documentation</title>
<link href="/assets/pentra-logo-small.svg" rel="icon">
<!-- Themes (light + dark) -->
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="stylesheet" media="(prefers-color-scheme: light)" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<!-- Custom Styles -->
<style>
</style>
</head>
<body>
<div id="app"></div>
<script>
// Docsify Configuration
window.$docsify = {
// GENERAL
// -----------------------------------------------------------------
name: 'Pentra Docx Template',
homepage: 'introduction.md',
loadSidebar: 'sidebar.md',
// NAVIGATION
// -----------------------------------------------------------------
auto2top: true,
maxLevel: 3,
subMaxLevel: 3,
// PLUGINS
// -----------------------------------------------------------------
search: {
depth: 3,
noData: 'No results!',
placeholder: 'Search...'
},
plugins: [
// Restores initial <title>
function persistTitle(hook, vm) {
var titleElm = document.querySelector('title');
var rootTitle = titleElm && titleElm.textContent;
var pageTitlePrefix = window.$docsify.name
? window.$docsify.name + ' - '
: '';
if (rootTitle) {
hook.doneEach(function () {
var currentTitle = titleElm.textContent;
var isRoot = !/\/[a-z]/.test(location.hash);
var newTitle = isRoot
? rootTitle
: pageTitlePrefix + currentTitle;
titleElm.textContent = newTitle;
});
}
}
]
};
</script>
<!-- Required -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<!-- Recommended -->
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4/lib/plugins/zoom-image.min.js"></script>
</body>
</html>