-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
78 lines (67 loc) · 2.67 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
<!doctype html>
<!--
Instructions:
- Save this file.
- Replace "USER" with your GitHub username.
- Replace "REPO" with your GitHub repo name.
- Replace "Your Project" with your project name.
- Upload this file (or commit to GitHub Pages).
Customize as you see fit!
-->
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>gibberwocky - reference</title>
<!-- Flatdoc -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/legacy.js'></script>
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/flatdoc.js'></script>
<!-- Flatdoc theme -->
<!-- <link href='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/theme-white/style.css' rel='stylesheet'> -->
<link href='./dark.css' rel='stylesheet'>
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/theme-white/script.js'></script>
<!--<script src='./script.js'></script>-->
<!-- Meta -->
<meta content="gibberwocky" property="og:title">
<meta content="live-coding Live, Max, and MIDI" name="description">
<!-- Initializer -->
<script>
Flatdoc.run({
fetcher: Flatdoc.file('docs.md')
})
window.jump = function ( h ){
var url = location.href; //Save down the URL without hash.
location.href = "#"+h; //Go to the target element.
history.replaceState(null,null,url); //Don't like hashes. Changing it back.
}
</script>
<style>
h2 { text-transform:none !important }
h3 { font-size:1.2em !important }
</style>
</head>
<body role='flatdoc' class='no-literate'>
<div class='header'>
<div class='left'>
<h1>gibberwocky</h1>
<ul>
<li><a href='https://github.com/charlieroberts/gibberwocky'>gibberwocky.live on GitHub</a></li>
<li><a href='http://github.com/worldmaking/max_gibberwocky_package'>gibberwocky.max on GitHub</a></li>
<li><a href='https://github.com/charlieroberts/gibberwocky.midi'>gibberwocky.MIDI on GitHub</a></li>
</ul>
</div>
<div class='right'>
<!-- GitHub buttons: see http://ghbtns.com -->
<iframe src="http://ghbtns.com/github-btn.html?user=USER&repo=charlieroberts/gibberwocky&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
</div>
</div>
<div class='content-root'>
<div class='menubar'>
<div class='menu section anchorific' role='flatdoc-menu'></div>
</div>
<div role='flatdoc-content' class='content'></div>
</div>
</body>
</html>