26 lines
No EOL
701 B
HTML
26 lines
No EOL
701 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Monaco LSP - Vanilla JS</title>
|
|
<link rel="icon" type="image/png" href="../favicon.png" />
|
|
<link rel="stylesheet" href='./style.css' />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="container" style="height: 400px;"></div>
|
|
|
|
<script type="module">
|
|
|
|
import { monaco } from "https://cdn.jsdelivr.net/npm/monaco-editor-esm-cdn/monaco.js";
|
|
|
|
monaco.editor.create(document.getElementById("container"), {
|
|
value: `function x() {\n\tconsole.log("Hello world!");\n}`,
|
|
language: "xquery",
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |