mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 23:13:02 +01:00
29 lines
810 B
TypeScript
29 lines
810 B
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';
|
|
|
|
registerLanguage({
|
|
id: 'xml',
|
|
extensions: [
|
|
'.xml',
|
|
'.dtd',
|
|
'.ascx',
|
|
'.csproj',
|
|
'.config',
|
|
'.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: () => import('./xml')
|
|
});
|