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>
|