forked from speced/respec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
starter.html
41 lines (41 loc) · 901 Bytes
/
starter.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Replace me with a real title</title>
<script src='//www.w3.org/Tools/respec/respec-w3c-common' async class='remove'></script>
<script class='remove'>
var respecConfig = {
specStatus: "ED",
editors: [{
name: "Your Name",
url: "http://your-site.com",
}],
processVersion: 2017,
edDraftURI: "http://some.github.repo",
shortName: "dahut"
};
</script>
</head>
<body>
<section id='abstract'>
<p>
This is required.
</p>
</section>
<section id='sotd'>
<p>
This is required.
</p>
</section>
<section>
<h2>Start your spec!</h2>
<pre class="idl">
interface Foo{
attribute Bar bar;
void doTheFoo();
};
</pre>
</section>
</body>
</html>