mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-07 11:57:55 +08:00
30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
|
<!doctype Html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Monaco Preview Handler languages.json generator</title>
|
||
|
<script src="monacoSRC/min/vs/loader.js"></script>
|
||
|
<script>
|
||
|
function download(filename, text) {
|
||
|
var element = document.createElement('a');
|
||
|
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(text));
|
||
|
element.setAttribute('download', filename);
|
||
|
|
||
|
element.style.display = 'none';
|
||
|
document.body.appendChild(element);
|
||
|
|
||
|
element.click();
|
||
|
|
||
|
document.body.removeChild(element);
|
||
|
}
|
||
|
require.config({ paths: { vs: 'monacoSRC/min/vs' } });
|
||
|
require(['vs/editor/editor.main'], function () {
|
||
|
download("languages.json", "{\"list\":"+ JSON.stringify(monaco.languages.getLanguages())+"}");
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container"></div>
|
||
|
</body>
|
||
|
</html>
|