-
Notifications
You must be signed in to change notification settings - Fork 3
/
examples.html
72 lines (60 loc) · 1.86 KB
/
examples.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
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="viewport" content="width=device-width">
<title>Examples</title>
<!-- Flatdoc -->
<script src='support/vendor/jquery.js'></script>
<script src='legacy.js'></script>
<script src='flatdoc.js'></script>
<!-- Flatdoc theme -->
<link href='theme-white/style.css' rel='stylesheet'>
<link href='style.css' rel='stylesheet'>
<script src='theme-white/script.js'></script>
<!-- Highlight.js theme -->
<link rel="stylesheet"
href="highlight/monokai_sublime.css">
<script src="highlight/highlight.min.js"></script>
<!-- Initializer -->
<script>
Flatdoc.run({
fetcher: Flatdoc.file('examples.md')
});
</script>
</head>
<body role='flatdoc'>
<div class='header'>
<div class='left'>
<h1>
<a href="../index.html">WeIO</a>
</h1>
<ul>
<li><a href="gettingStarted.html">Getting started</a></li>
<li><a href="tutorial.html">Tutorial</a></li>
<li><a href="examples.html">Examples</a></li>
<li><a href="boardHW.html">Board and HW</a></li>
<li><a href="ide.html">IDE</a></li>
<li><a href="jsAPI.html">Javascript API</a></li>
<li><a href="pyAPI.html">Python API</a></li>
<li><a href="troubleshooting.html">Troubleshooting</a></li>
</ul>
</div>
</div>
<div role='flatdoc' class='content-root'>
<div class='menubar'>
<div class='menu section' role='flatdoc-menu'></div>
</div>
<div role='flatdoc-content' class='content'></div>
</div>
</body>
<script>
window.onload = function() {
var aCodes = document.getElementsByTagName('code');
for (var i=0; i < aCodes.length; i++) {
hljs.highlightBlock(aCodes[i]);
}
};
</script>
</html>