File: syntax-highlight.html

package info (click to toggle)
webdeveloper 1.2.5%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,364 kB
  • ctags: 1,608
  • sloc: makefile: 10
file content (47 lines) | stat: -rw-r--r-- 1,258 bytes parent folder | download
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
<!DOCTYPE html>
<html id="web-developer-syntax-highlight" lang="en">

<head>
  <meta charset="utf-8">
  <title>Web Developer</title>
  <link href="syntax-highlight.css" rel="stylesheet">
</head>

<body>

<div id="content">
  <pre id="web-developer-syntax-highlight-example"></pre>
  <textarea id="web-developer-syntax-highlight-sample">
<!DOCTYPE html>
<html>
<head>
  <title>Web Developer</title>
  <style>
    /* CSS */
    html { background-color: #fff; color: #000; }
  </style>
</head>
<body>
  <!-- HTML -->
  <h1 id="header">Web Developer</h1>
  <p class="paragraph">Web Developer</p>
  <script>
    // JavaScript
    var i = 0;
  </script>
</body>
</html>
  </textarea>
</div>

<script src="chrome://web-developer/content/common/jquery/jquery.js"></script>
<script src="chrome://web-developer/content/common/codemirror/codemirror.js"></script>
<script src="chrome://web-developer/content/common/codemirror/css.js"></script>
<script src="chrome://web-developer/content/common/codemirror/htmlmixed.js"></script>
<script src="chrome://web-developer/content/common/codemirror/javascript.js"></script>
<script src="chrome://web-developer/content/common/codemirror/xml.js"></script>
<script src="javascript/syntax-highlight.js"></script>

</body>

</html>