Commit b1d3cea4 authored by Jérome Perrin's avatar Jérome Perrin Committed by Kazuhiko Shiozaki

monaco_editor: support editing YAML

we pass the schema already, but for now this only supports basic
syntax highlighting
parent f7a5c510
......@@ -113,6 +113,9 @@
} else if (options.content_type === 'application/json') {
model_language = 'json';
state_dict.json_schema_url = options.json_schema_url;
} else if (options.content_type === 'application/x-yaml') {
model_language = 'yaml';
state_dict.json_schema_url = options.json_schema_url;
}
state_dict.model_language = model_language;
state_dict.value = options.value || '';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment