30 lines
606 B
HTML
30 lines
606 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
<style type="text/css">
|
|
#editor {
|
|
position: relative;
|
|
left: 500px;
|
|
top: 20px;
|
|
width: 600px;
|
|
height: 400px;
|
|
border: 1px solid #ccc;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="transform: scale(0.75)">
|
|
<div id="editor"></div>
|
|
|
|
<script src="dev-setup.js"></script>
|
|
<script>
|
|
loadEditor(function () {
|
|
monaco.editor.create(document.getElementById('editor'), {
|
|
value: document.documentElement.innerHTML,
|
|
language: 'xml'
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|