mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-19 04:08:48 +00:00
16 lines
246 B
JavaScript
16 lines
246 B
JavaScript
const value = `
|
|
number: 0xfe
|
|
boolean: true
|
|
`;
|
|
|
|
async function create() {
|
|
const monaco = await import('./main.js');
|
|
|
|
monaco.editor.create(document.querySelector('.editor'), {
|
|
language: 'yaml',
|
|
tabSize: 2,
|
|
value,
|
|
});
|
|
}
|
|
|
|
create();
|