File: index.html

package info (click to toggle)
node-codemirror-lang-macaulay2 0.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 340 kB
  • sloc: javascript: 50; makefile: 23
file content (23 lines) | stat: -rw-r--r-- 579 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>CodeMirror Macaulay2 Language Module Demo</title>
    <style>
      body {
        font-family: sans-serif;
        padding: 20px;
      }
      .editor {
        border: 1px solid #ccc;
        height: 300px;
      }
    </style>
  </head>
  <body>
    <h1>CodeMirror Macaulay2 Language Module Demo</h1>
    <div id="editor" class="editor"></div>
    <script type="module" src="./bundle.js"></script>
  </body>
</html>