-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (86 loc) · 2.93 KB
/
Copy pathindex.html
File metadata and controls
99 lines (86 loc) · 2.93 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>VexFlow Documentation</title>
<meta name="description" content="VexFlow Documentation" />
<meta name="author" content="Ron B. Yeh" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #fcfcfb;
color: #333;
max-width: 1100px;
margin: 20px auto;
padding: 0px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
h1 {
margin-top: 24px;
margin-bottom: 10px;
}
.footer-container {
display: flex;
justify-content: flex-end;
align-items: center;
float: right;
margin-top: 12px;
}
.footer-text {
margin-right: 10px;
}
.footer-image {
height: 30px;
}
ul {
padding-left: 40px;
}
li {
margin-bottom: 4px;
}
li.current-version {
font-weight: bold;
}
a {
text-decoration: none;
color: #006eea;
}
a:hover {
text-decoration: underline;
}
li.dev-version {
color: #999;
}
li.dev-version::marker {
color: black;
}
p {
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>Getting Started</h1>
<p><b>TODO</b>: Provide a short Hello World example.</p>
<p>See: <a href="https://github.com/vexflow/vexflow/wiki/Getting-Started">https://github.com/vexflow/vexflow/wiki/Getting-Started</a></p>
<h1>Tutorial</h1>
<p><b>TODO</b>: Provide a longer tutorial.</p>
<p>See: <a href="https://github.com/vexflow/vexflow/wiki/Tutorial">https://github.com/vexflow/vexflow/wiki/Tutorial</a></p>
<h1>API Documentation</h1>
<ul>
<li class="current-version"><a href="api/5.0.0/">v5.0.0 (current release)</a></li>
<li class="dev-version"><a href="api/dev/">dev</a> generated on April 22, 2025 for revision <a href="https://github.com/vexflow/vexflow/tree/5a1b3872">5a1b3872</a></li>
</ul>
<p> </p>
<hr />
<div class="footer-container">
<div class="footer-text">© 2025 VexFlow</div>
<img class="footer-image" src="s/i/logo.svg" alt="VexFlow Logo" />
</div>
</body>
</html>