-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (108 loc) · 3.69 KB
/
index.html
File metadata and controls
113 lines (108 loc) · 3.69 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>App Lab Kurs</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="css/vue.css">
<link rel="stylesheet" href="css/vue-boxes.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/prism.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
</head>
<body>
<nav>
<a href="https://mrsie.de"><i class="fas fa-home"></i> mrsie.de</a>
</nav>
<div id="app"></div>
<script>
window.$docsify = {
name: 'App Lab Kurs',
homepage: 'index.md',
auto2top: true,
loadSidebar: true,
subMaxLevel: 2,
fallbackLanguages: ["de"],
externalLinkTarget: '_blank',
//themeColor: '#337ab7',
search: {
depth: 2,
noData: {
'/': 'Keine Ergebnisse!'
},
placeholder: {
'/': 'Suche'
},
},
markdown: {
smartypants: true,
renderer: {
paragraph: function (text) {
var result;
if (/^!>/.test(text)) {
result = helper('tip', text);
} else if (/^\?>/.test(text)) {
result = helper('warn', text);
} else if (/^s>/.test(text)) {
result = helper('alert alert-success', text);
} else if (/^i>/.test(text)) {
result = helper('alert alert-info', text);
} else if (/^w>/.test(text)) {
result = helper('alert alert-warning', text);
} else if (/^d>/.test(text)) {
result = helper('alert alert-danger', text);
} else if (/^t>/.test(text)) {
result = helper('alert alert-task', text);
} else if (/^q>/.test(text)) {
result = helper('alert alert-question', text);
}else if (/^a>/.test(text)) {
result = helper('alert alert-answer', text);
} else {
result = "<p>" + text + "</p>";
}
return result;
function helper(className, content) {
return ("<p class=\"" + className + "\">" + (content.slice(5).trim()) + "</p>")
}
}
}
},
formatUpdated: '{DD}.{MM}.{YYYY} {HH}:{mm}',
plugins: [
function (hook, vm) {
hook.beforeEach(function (html) {
var url = 'https://github.com/mrsie/AppLab/blob/master/' + vm.route.file
var editHtml = '[Edit on GitHub](' + url + ')\n'
return "<p style='text-align:right;'>{docsify-updated}<p>\n\n" + html
+ '\n\n----\n'
+ editHtml
})
}
],
pagination: {
previousText: 'Zurück',
nextText: 'Weiter',
crossChapter: false,
crossChapterText: false,
},
tabs: {
persist : true,
sync : true,
theme : 'classic',
tabComments: true,
tabHeadings: true
}
}
</script>
<script src="js/docsify.min.js"></script>
<script src="js/search.min.js"></script>
<script src="js/prism.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<!--
<script src="//unpkg.com/docsify-glossary/dist/docsify-glossary.min.js"></script>
-->
</body>
</html>