mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 12:45:39 +01:00
42 lines
1 KiB
TypeScript
42 lines
1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { registerLanguage } from '../_.contribution';
|
|
|
|
declare var AMD: any;
|
|
declare var require: any;
|
|
|
|
registerLanguage({
|
|
id: 'xml',
|
|
extensions: [
|
|
'.xml',
|
|
'.dtd',
|
|
'.ascx',
|
|
'.csproj',
|
|
'.config',
|
|
'.props',
|
|
'.targets',
|
|
'.wxi',
|
|
'.wxl',
|
|
'.wxs',
|
|
'.xaml',
|
|
'.svg',
|
|
'.svgz',
|
|
'.opf',
|
|
'.xsl'
|
|
],
|
|
firstLine: '(\\<\\?xml.*)|(\\<svg)|(\\<\\!doctype\\s+svg)',
|
|
aliases: ['XML', 'xml'],
|
|
mimetypes: ['text/xml', 'application/xml', 'application/xaml+xml', 'application/xml-dtd'],
|
|
loader: () => {
|
|
if (AMD) {
|
|
return new Promise((resolve, reject) => {
|
|
require(['vs/basic-languages/xml/xml'], resolve, reject);
|
|
});
|
|
} else {
|
|
return import('./xml');
|
|
}
|
|
}
|
|
});
|