-
Notifications
You must be signed in to change notification settings - Fork 3
/
ace.html
56 lines (53 loc) · 1.92 KB
/
ace.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
<!DOCTYPE html>
<html lang="en">
<head>
<title="WebIDE - Ace">
<script src="https://raw.githubusercontent.com/ajaxorg/ace-builds/3459f57252c79bad99246012f9c703f728eb0b7a/src/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
var editor = ace.edit("editor");
editor.setTheme("https://raw.githubusercontent.com/ajaxorg/ace-builds/3459f57252c79bad99246012f9c703f728eb0b7a/src/theme-vibrant_ink");
editor.session.setMode("https://raw.githubusercontent.com/ajaxorg/ace-builds/3459f57252c79bad99246012f9c703f728eb0b7a/src/mode-abc");
</script>
<link rel="stylesheet" href="https://raw.githubusercontent.com/WebIDEorg/WebIDE-src/master/style.css">
</head>
<body>
<ul>
<li>
<center>
<img height="100" src="https://raw.githubusercontent.com/josephworks/WebIDE/master/WebIDElogo.png">
</center>
<li>
<a href="/index.html">Home</a>
</li>
<li>
<a href="/plain.html">Plain</a>
</li>
<li>
<a href="/vscode.html">VSCode</a>
</li>
<li>
<a href="/codenvy.html">Codenvy</a>
</li>
<li>
<a href="/about.html">About</a>
</li>
<li>
<a href="/more.html">More</a>
</li>
</ul>
<div style="margin-left:25%;padding:1px 16px;height:660px;">
<header>
<center>
<h1>WebIDE - Ace editor</h1>
</center>
</header>
<div style="border:2px solid #666; border-radius:11px; padding:20px;" id="editor">function foo(items) { var x = "All this is syntax highlighted"; return x; }
</div>
<footer>
<center>
<h3>Created by JosephWorks 2018</h3>
</center>
</footer>
</div>
</body>
</html>