-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheclipse.html
48 lines (43 loc) · 904 Bytes
/
eclipse.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Bro Editor</title>
<style type="text/css" media="screen">
body {
overflow: hidden;
}
#editor {
position: absolute;
width: 800px;
height: 400px;
}
</style>
</head>
<body>
<p>
<a href="index.html">XCode</a> |
<a href="ambiance.html">Ambiance</a> |
<a href="cobalt.html">Cobalt</a> |
Eclipse |
<a href="textmate.html">Textmate</a> |
<a href="twilight.html">Twilight</a>
</p>
<pre id="editor">event bro_init()
{
print "Hello, World!";
}
event bro_done()
{
print "Goodbye, World!";
}</pre>
<script src="src-noconflict/ace.js" type="text/javascript"
charset="utf-8"></script>
<script type="text/javascript">
var editor = ace.edit("editor");
editor.setTheme("ace/theme/eclipse");
editor.session.setMode("ace/mode/bro");
</script>
</body>
</html>