-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
141 lines (120 loc) · 4.14 KB
/
index.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="UTF-8">
<link rel="icon" href="images/psc_ico.ico" type="image/icon type">
<link rel="apple-touch-icon" href="images/psc_logo.png" />
<link rel="apple-touch-icon" sizes="72×72" href="images/psc_logo.png" />
<link rel="apple-touch-icon" sizes="114×114" href="images/psc_logo.png" />
<link rel="apple-touch-icon" sizes="512x512" href="images/psc_logo.png" />
<!--<link rel="stylesheet" href="./css/buble.css">-->
<link rel="stylesheet" href="./css/theme-simple.css" />
<link rel="stylesheet" href="./css/mermaid.min.css">
<link rel="stylesheet" href="./css/docsify-charty.min.css">
<link rel="stylesheet" href="./css/toc.css">
<title>Agile Handbook</title>
<style>
img {
margin-left: auto;
margin-right: auto;
display: block;
}
</style>
</head>
<body>
<div style="float: top;" align="center">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4381168884554284"
crossorigin="anonymous"></script>
<!-- PSCAgile -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-4381168884554284"
data-ad-slot="5528277167"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div id="app">
<div style="text-align: center; margin-top: 50px;">
<img alt="Agile loading..." src="./images/agile-cover-4.png" />
<h3>Loading the documentation...</h3>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>
var num = 0;
var currentCodeExample = 0;
function escapeHTML(html) {
return html
.replaceAll('&', '&')
.replaceAll('<', '<')
.replaceAll('>', '>')
.replaceAll('"', '"')
.replaceAll("'", ''');
}
mermaid.initialize({ startOnLoad: false });
window.$docsify = {
name: 'Agile Handbook',
search: 'auto',
ga: 'UA-51944269-3',
charty: {
"theme": "#EE5599",
"mode": "light",
"debug": false
},
el: "#app",
repo: "https://erossini.github.io/agile",
loadSidebar: true,
maxLevel: 5,
subMaxLevel: 5,
'flexible-alerts': {
style: 'callout'
},
markdown: {
renderer: {
code: function (code, lang) {
if (lang && (lang.startsWith('mermaid') || lang === 'mmd')) {
var resultingHTML = '';
if (lang === 'mmd' || lang === 'mermaid-example') {
currentCodeExample++;
resultingHTML += '<pre id="code' + currentCodeExample + '">' + escapeHTML(code) + '</pre>';
}
if (lang === 'mermaid' || lang === 'mermaid-example') {
resultingHTML +=
'<div class="mermaid">' + mermaid.render('mermaid-svg-' + num++, code) + '</div>';
}
if (resultingHTML !== '') {
return resultingHTML;
}
}
return this.origin.code.apply(this, arguments);
}
}
},
toc: {
scope: '.markdown-section',
headings: 'h1, h2, h3, h4, h5, h6',
title: 'Table of Contents',
},
}
window.$docsify.customPageTitle = {
prefix: "Agile Handbook",
seprator: "|"
}
</script>
<script src="./js/docsify.min.js"></script>
<script src="./js/docsify-glossary.min.js"></script>
<script src="./js/search.min.js"></script>
<script src="./js/zoom-image.min.js"></script>
<script src="./js/docsify-pagination.min.js"></script>
<script src="./js/progress.min.js"></script>
<script src="./js/docsify-charty.min.js"></script>
<!--<script src="./js/toc.js"></script>-->
<script src="./js/docsify-plugin-flexible-alerts.min.js"></script>
<script src="./js/plugin.min.js"></script>
<script src="./js/ga.min.js"></script>
</body>
</html>