File: browser.html

package info (click to toggle)
node-monaco-languageclient 20230504.93ecd19-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 704 kB
  • sloc: javascript: 46; makefile: 14; sh: 3
file content (16 lines) | stat: -rw-r--r-- 419 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>

<head>
    <title>Monaco Language Client Browser Sample</title>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>


<body>
	<h2>Monaco Language Client Browser Sample</h2>
	<div id="container" style="width:800px;height:600px;border:1px solid grey"></div>
	<script type="module" src="./src/browser/main.ts"></script>
</body>
</html>