forked from tasmota/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (115 loc) · 4.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Tasmota Documentation</title>
<link rel="icon" href="favicon.ico">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Tasmota">
<meta name="keywords" content="tasmota tuya esp8266 flash nodemcu firmware help installation open source flash">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta property="og:title" content="Tasmota">
<meta property="og:description" content="Alternative open source firmware for ESP8266 devices.">
<meta property="og:image" content="https://tasmota.github.io/docs/_media/logo-blue.png">
<meta property="og:url" content="https://tasmota.github.io/docs/#/Home">
<meta name="twitter:title" content="Tasmota">
<meta name="twitter:description" content="Alternative open source firmware for ESP8266 devices.">
<meta name="twitter:image" content="https://tasmota.github.io/docs/_media/logo-twitter.svg">
<meta name="twitter:card" content="summary_large_image">
<!-- Theme: Simple Dark -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="stylesheet" href="_assets/theme-custom.css">
<!-- PrismJS theme -->
<link rel="stylesheet" href="_assets/prism.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
basePath : './',
themeColor : '#1FA3EC',
name : 'Tasmota',
nameLink : './#/Home',
homepage : 'Home.md',
logo : '/_media/logob.svg',
repo : 'https://github.com/arendst/Tasmota',
onlyCover : true,
relativePath: false,
coverpage : true,
auto2top : true,
mergeNavbar: true,
notFoundPage: true,
maxLevel : 2,
loadSidebar: true,
autoHeader : true,
loadNavbar: true,
alias: {
'/.*/Commands': '/Commands',
'/.*/commands': '/Commands',
'/.*/_navbar.md': '_navbar.md',
'/.*/compile-your-build': 'Compile-your-build',
'/compile-your-build': 'Compile-your-build',
},
subMaxLevel: 3,
editLink: {
text: 'Improve this article',
repo: 'https://github.com/tasmota/docs/blob/master/',
cssClass: ''
},
ga: 'UA-140681905-2',
formatUpdated: 'Last updated {DD}.{MM}.{YYYY}',
tabs: {
persist : true, // default
sync : true, // default
theme : 'classic', // default
tabComments: true, // default
tabHeadings: true // default
},
'flexibleAlerts': {
style: 'tasmota',
example: {
label: "Example",
icon: "fas fa-chalkboard-teacher",
className: "example"
},
},
search : {
depth: 2,
hideOtherSidebarContent: true,
},
};
</script>
<!-- Latest v2.x.x -->
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<!-- docsify-tabs -->
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<!-- docsify-example-panels (latest) -->
<!-- <script src="https://cdn.jsdelivr.net/npm/docsify-example-panels@1"></script> -->
<!-- Prism search plugin -->
<script src="//unpkg.com/docsify/lib/plugins/search.js"></script>
<!-- Flexible alerts -->
<script src="//unpkg.com/docsify-plugin-flexible-alerts"></script>
<!-- Remote Markdown -->
<script src="//unpkg.com/docsify-remote-markdown/dist/docsify-remote-markdown.min.js"></script>
<!-- copy code snippet script -->
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<!-- Edit on Github on every page -->
<script src="_assets/edit-link.js"></script>
<!-- Beautiful Alerts plugin - Custom blockquote alerts -->
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
<!-- Sidebar Collapse -->
<script src="//unpkg.com/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script>
<!-- Image zoom -->
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<!-- GA -->
<script src="//unpkg.com/docsify/lib/plugins/ga.min.js"></script>
<!-- Pagination -->
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<!-- Prism additional components -->
<script src="_assets/prism-bash.min.js"></script>
<script src="_assets/prism-yaml.min.js"></script>
<script src="_assets/prism-json.min.js"></script>
<script src="_assets/prism-tasmota.js"></script>
</body>
</html>