-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnot-working.html
28 lines (25 loc) · 968 Bytes
/
not-working.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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/google/code-prettify/master/src/prettify.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/google/code-prettify/master/styles/sunburst.css" />
<script type="text/javascript" src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<script type="text/javascript" src="lang-rebol.js"></script>
</head>
<body>
<h1>Rebol</h1>
<h2>Highlighting not working in lang-rebol.js (using sunburst CSS)</h2>
<pre class="prettyprint lang-rebol">
Rebol []
; below works in rebol! (r2 & r3)
multline-str: {
start
Opening { is fine. Also ^{ and ^}
But closing } even though balanced does not highlight correctly :(
end
}
; below should highlight correctly! (just a highlighting placeholder!)
print "hello world"
</pre>
</body>
</html>