mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 23:13:02 +01:00
7 lines
268 B
JavaScript
7 lines
268 B
JavaScript
// The editor exposes a set of CSS classes that can be overwritten.
|
|
monaco.editor.create(document.getElementById("container"), {
|
|
value: "My to-do list:\n* buy milk\n* buy coffee\n* write awesome code",
|
|
language: "text/plain",
|
|
fontFamily: "Arial",
|
|
fontSize: 20
|
|
});
|