antosdk-apps/MonacoCore/bundle/node_modules_monaco-editor_esm_vs_basic-languages_html_html_js.bundle.js
2021-04-19 15:08:15 +02:00

22 lines
12 KiB
JavaScript

/*
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
(self["webpackChunkbrowser_esm_webpack"] = self["webpackChunkbrowser_esm_webpack"] || []).push([["node_modules_monaco-editor_esm_vs_basic-languages_html_html_js"],{
/***/ "./node_modules/monaco-editor/esm/vs/basic-languages/html/html.js":
/*!************************************************************************!*\
!*** ./node_modules/monaco-editor/esm/vs/basic-languages/html/html.js ***!
\************************************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"conf\": () => (/* binding */ conf),\n/* harmony export */ \"language\": () => (/* binding */ language)\n/* harmony export */ });\n/* harmony import */ var _fillers_monaco_editor_core_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../fillers/monaco-editor-core.js */ \"./node_modules/monaco-editor/esm/vs/basic-languages/fillers/monaco-editor-core.js\");\n/*---------------------------------------------------------------------------------------------\r\n * Copyright (c) Microsoft Corporation. All rights reserved.\r\n * Licensed under the MIT License. See License.txt in the project root for license information.\r\n *--------------------------------------------------------------------------------------------*/\r\n\r\nvar EMPTY_ELEMENTS = [\r\n 'area',\r\n 'base',\r\n 'br',\r\n 'col',\r\n 'embed',\r\n 'hr',\r\n 'img',\r\n 'input',\r\n 'keygen',\r\n 'link',\r\n 'menuitem',\r\n 'meta',\r\n 'param',\r\n 'source',\r\n 'track',\r\n 'wbr'\r\n];\r\nvar conf = {\r\n wordPattern: /(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\$\\^\\&\\*\\(\\)\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\s]+)/g,\r\n comments: {\r\n blockComment: ['<!--', '-->']\r\n },\r\n brackets: [\r\n ['<!--', '-->'],\r\n ['<', '>'],\r\n ['{', '}'],\r\n ['(', ')']\r\n ],\r\n autoClosingPairs: [\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '\"', close: '\"' },\r\n { open: \"'\", close: \"'\" }\r\n ],\r\n surroundingPairs: [\r\n { open: '\"', close: '\"' },\r\n { open: \"'\", close: \"'\" },\r\n { open: '{', close: '}' },\r\n { open: '[', close: ']' },\r\n { open: '(', close: ')' },\r\n { open: '<', close: '>' }\r\n ],\r\n onEnterRules: [\r\n {\r\n beforeText: new RegExp(\"<(?!(?:\" + EMPTY_ELEMENTS.join('|') + \"))([_:\\\\w][_:\\\\w-.\\\\d]*)([^/>]*(?!/)>)[^<]*$\", 'i'),\r\n afterText: /^<\\/([_:\\w][_:\\w-.\\d]*)\\s*>$/i,\r\n action: {\r\n indentAction: _fillers_monaco_editor_core_js__WEBPACK_IMPORTED_MODULE_0__.languages.IndentAction.IndentOutdent\r\n }\r\n },\r\n {\r\n beforeText: new RegExp(\"<(?!(?:\" + EMPTY_ELEMENTS.join('|') + \"))(\\\\w[\\\\w\\\\d]*)([^/>]*(?!/)>)[^<]*$\", 'i'),\r\n action: { indentAction: _fillers_monaco_editor_core_js__WEBPACK_IMPORTED_MODULE_0__.languages.IndentAction.Indent }\r\n }\r\n ],\r\n folding: {\r\n markers: {\r\n start: new RegExp('^\\\\s*<!--\\\\s*#region\\\\b.*-->'),\r\n end: new RegExp('^\\\\s*<!--\\\\s*#endregion\\\\b.*-->')\r\n }\r\n }\r\n};\r\nvar language = {\r\n defaultToken: '',\r\n tokenPostfix: '.html',\r\n ignoreCase: true,\r\n // The main tokenizer for our languages\r\n tokenizer: {\r\n root: [\r\n [/<!DOCTYPE/, 'metatag', '@doctype'],\r\n [/<!--/, 'comment', '@comment'],\r\n [/(<)((?:[\\w\\-]+:)?[\\w\\-]+)(\\s*)(\\/>)/, ['delimiter', 'tag', '', 'delimiter']],\r\n [/(<)(script)/, ['delimiter', { token: 'tag', next: '@script' }]],\r\n [/(<)(style)/, ['delimiter', { token: 'tag', next: '@style' }]],\r\n [/(<)((?:[\\w\\-]+:)?[\\w\\-]+)/, ['delimiter', { token: 'tag', next: '@otherTag' }]],\r\n [/(<\\/)((?:[\\w\\-]+:)?[\\w\\-]+)/, ['delimiter', { token: 'tag', next: '@otherTag' }]],\r\n [/</, 'delimiter'],\r\n [/[^<]+/] // text\r\n ],\r\n doctype: [\r\n [/[^>]+/, 'metatag.content'],\r\n [/>/, 'metatag', '@pop']\r\n ],\r\n comment: [\r\n [/-->/, 'comment', '@pop'],\r\n [/[^-]+/, 'comment.content'],\r\n [/./, 'comment.content']\r\n ],\r\n otherTag: [\r\n [/\\/?>/, 'delimiter', '@pop'],\r\n [/\"([^\"]*)\"/, 'attribute.value'],\r\n [/'([^']*)'/, 'attribute.value'],\r\n [/[\\w\\-]+/, 'attribute.name'],\r\n [/=/, 'delimiter'],\r\n [/[ \\t\\r\\n]+/] // whitespace\r\n ],\r\n // -- BEGIN <script> tags handling\r\n // After <script\r\n script: [\r\n [/type/, 'attribute.name', '@scriptAfterType'],\r\n [/\"([^\"]*)\"/, 'attribute.value'],\r\n [/'([^']*)'/, 'attribute.value'],\r\n [/[\\w\\-]+/, 'attribute.name'],\r\n [/=/, 'delimiter'],\r\n [\r\n />/,\r\n {\r\n token: 'delimiter',\r\n next: '@scriptEmbedded',\r\n nextEmbedded: 'text/javascript'\r\n }\r\n ],\r\n [/[ \\t\\r\\n]+/],\r\n [/(<\\/)(script\\s*)(>)/, ['delimiter', 'tag', { token: 'delimiter', next: '@pop' }]]\r\n ],\r\n // After <script ... type\r\n scriptAfterType: [\r\n [/=/, 'delimiter', '@scriptAfterTypeEquals'],\r\n [\r\n />/,\r\n {\r\n token: 'delimiter',\r\n next: '@scriptEmbedded',\r\n nextEmbedded: 'text/javascript'\r\n }\r\n ],\r\n [/[ \\t\\r\\n]+/],\r\n [/<\\/script\\s*>/, { token: '@rematch', next: '@pop' }]\r\n ],\r\n // After <script ... type =\r\n scriptAfterTypeEquals: [\r\n [\r\n /\"([^\"]*)\"/,\r\n {\r\n token: 'attribute.value',\r\n switchTo: '@scriptWithCustomType.$1'\r\n }\r\n ],\r\n [\r\n /'([^']*)'/,\r\n {\r\n token: 'attribute.value',\r\n switchTo: '@scriptWithCustomType.$1'\r\n }\r\n ],\r\n [\r\n />/,\r\n {\r\n token: 'delimiter',\r\n next: '@scriptEmbedded',\r\n nextEmbedded: 'text/javascript'\r\n }\r\n ],\r\n [/[ \\t\\r\\n]+/],\r\n [/<\\/script\\s*>/, { token: '@rematch', next: '@pop' }]\r\n ],\r\n // After <script ... type = $S2\r\n scriptWithCustomType: [\r\n [\r\n />/,\r\n {\r\n token: 'delimiter',\r\n next: '@scriptEmbedded.$S2',\r\n nextEmbedded: '$S2'\r\n }\r\n ],\r\n [/\"([^\"]*)\"/, 'attribute.value'],\r\n [/'([^']*)'/, 'attribute.value'],\r\n [/[\\w\\-]+/, 'attribute.name'],\r\n [/=/, 'delimiter'],\r\n [/[ \\t\\r\\n]+/],\r\n [/<\\/script\\s*>/, { token: '@rematch', next: '@pop' }]\r\n ],\r\n scriptEmbedded: [\r\n [/<\\/script/, { token: '@rematch', next: '@pop', nextEmbedded: '@pop' }],\r\n [/[^<]+/, '']\r\n ],\r\n // -- END <script> tags handling\r\n // -- BEGIN <style> tags handling\r\n // After <style\r\n style: [\r\n [/type/, 'attribute.name', '@styleAfterType'],\r\n [/\"([^\"]*)\"/, 'attribute.value'],\r\n [/'([^']*)'/, 'attribute.value'],\r\n [/[\\w\\-]+/, 'attribute.name'],\r\n [/=/, 'delimiter'],\r\n [\r\n />/,\r\n {\r\n token: 'delimiter',\r\n next: '@styleEmbedded',\r\n nextEmbedded: 'text/css'\r\n }\r\n ],\r\n [/[ \\t\\r\\n]+/],\r\n [/(<\\/)(style\\s*)(>)/, ['delimiter', 'tag', { token: 'delimiter', next: '@pop' }]]\r\n ],\r\n // After <style ... type\r\n styleAfterType: [\r\n [/=/, 'delimiter', '@styleAfterTypeEquals'],\r\n [\r\n />/,\r\n {\r\n token: 'delimiter',\r\n next: '@styleEmbedded',\r\n nextEmbedded: 'text/css'\r\n }\r\n ],\r\n [/[ \\t\\r\\n]+/],\r\n [/<\\/style\\s*>/, { token: '@rematch', next: '@pop' }]\r\n ],\r\n // After <style ... type =\r\n styleAfterTypeEquals: [\r\n [\r\n /\"([^\"]*)\"/,\r\n {\r\n token: 'attribute.value',\r\n switchTo: '@styleWithCustomType.$1'\r\n }\r\n ],\r\n [\r\n /'([^']*)'/,\r\n {\r\n token: 'attribute.value',\r\n switchTo: '@styleWithCustomType.$1'\r\n }\r\n ],\r\n [\r\n />/,\r\n {\r\n token: 'delimiter',\r\n next: '@styleEmbedded',\r\n nextEmbedded: 'text/css'\r\n }\r\n ],\r\n [/[ \\t\\r\\n]+/],\r\n [/<\\/style\\s*>/, { token: '@rematch', next: '@pop' }]\r\n ],\r\n // After <style ... type = $S2\r\n styleWithCustomType: [\r\n [\r\n />/,\r\n {\r\n token: 'delimiter',\r\n next: '@styleEmbedded.$S2',\r\n nextEmbedded: '$S2'\r\n }\r\n ],\r\n [/\"([^\"]*)\"/, 'attribute.value'],\r\n [/'([^']*)'/, 'attribute.value'],\r\n [/[\\w\\-]+/, 'attribute.name'],\r\n [/=/, 'delimiter'],\r\n [/[ \\t\\r\\n]+/],\r\n [/<\\/style\\s*>/, { token: '@rematch', next: '@pop' }]\r\n ],\r\n styleEmbedded: [\r\n [/<\\/style/, { token: '@rematch', next: '@pop', nextEmbedded: '@pop' }],\r\n [/[^<]+/, '']\r\n ]\r\n // -- END <style> tags handling\r\n }\r\n};\r\n// TESTED WITH:\r\n// <!DOCTYPE html>\r\n// <html>\r\n// <head>\r\n// <title>Monarch Workbench</title>\r\n// <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />\r\n// <!----\r\n// -- -- -- a comment -- -- --\r\n// ---->\r\n// <style bah=\"bah\">\r\n// body { font-family: Consolas; } /* nice */\r\n// </style>\r\n// </head\r\n// >\r\n// a = \"asd\"\r\n// <body>\r\n// <br/>\r\n// <div\r\n// class\r\n// =\r\n// \"test\"\r\n// >\r\n// <script>\r\n// function() {\r\n// alert(\"hi </ script>\"); // javascript\r\n// };\r\n// </script>\r\n// <script\r\n// \tbah=\"asdfg\"\r\n// \ttype=\"text/css\"\r\n// \t>\r\n// .bar { text-decoration: underline; }\r\n// </script>\r\n// </div>\r\n// </body>\r\n// </html>\r\n\n\n//# sourceURL=webpack://browser-esm-webpack/./node_modules/monaco-editor/esm/vs/basic-languages/html/html.js?");
/***/ })
}]);