-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 988 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>MathML Syntax Highlighting</title>
<style>
body {
padding: 15px 40px;
font-family: Arial, Helvetica, sans-serif;
max-width: 600px;
}
.CodeMirror {
border: 1px solid #e2e3e4;
}
</style>
</head>
<body>
<h1><a href="https://highlightjs.org/" target="_blank" rel="noopener">highlight.js<a></h1>
<h2>Non Editable Content</h2>
<p>Content must be previously formatted (indented and with line breaks) for this to work.</p>
<pre><code class="xml" id="static"></code></pre>
<h1><a href="https://codemirror.net/" target="_blank" rel="noopener">CodeMirror</a></h1>
<h2>Editable Textarea</h2>
<textarea id="dynamic" rows="1"></textarea>
<h2>Automatic code indentation</h2>
<p>As long as code is split into different lines.</p>
<textarea id="dynamic-autoindent"></textarea>
<script src="./index.js"></script>
</body>
</html>