@vue/devtools-electron 7.0.12 → 7.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.d.ts +1 -0
- package/client/assets/{css-a-KJtBLB.js → css-tuEqSfZX.js} +347 -347
- package/client/assets/html-NT1OIsSF.js +74 -0
- package/client/assets/index-KXVUFBYX.js +1096 -0
- package/client/assets/{index-598L0Wdv.css → index-fx3Lb9Fg.css} +1 -1
- package/client/assets/{javascript-Of8SnKfU.js → javascript-4rbEI_qn.js} +507 -507
- package/client/assets/json-xL80yL3n.js +25 -0
- package/client/assets/{shellscript-h1L64xId.js → shellscript-82BvnTib.js} +3 -3
- package/client/assets/{typescript-b1Nw_bQe.js → typescript-IWNmnGsa.js} +487 -487
- package/client/assets/unocss-runtime-TAqnQCrJ.js +2 -0
- package/client/assets/{vue-nOwTje1i.js → vue-YzhXM3IG.js} +1508 -1508
- package/client/assets/{vue-html-eJ6eRCYJ.js → vue-html-K7eG1nl_.js} +1 -1
- package/client/assets/yaml-zytfnWoA.js +200 -0
- package/client/{css-hXHVOlj5.js → css-FzZ_BjSq.js} +347 -347
- package/client/devtools-panel.css +1 -1
- package/client/devtools-panel.js +12834 -12546
- package/client/html-WFjUqgJ3.js +84 -0
- package/client/index.html +3 -3
- package/client/{javascript-iu2g-HpL.js → javascript-_oSuCsY2.js} +507 -507
- package/client/json-GUBx_oBO.js +31 -0
- package/client/logo.svg +208 -0
- package/client/{shellscript-lFevXvOp.js → shellscript-OgCjrX59.js} +3 -3
- package/client/{typescript-SzFP_hYV.js → typescript-Pt1W475c.js} +487 -487
- package/client/unocss-runtime-Pdo20xvb.js +1988 -0
- package/client/{vue-vFbCUJfs.js → vue-CJRD3BeY.js} +1529 -1529
- package/client/{vue-html-IdJrwrVJ.js → vue-html-9E-FEOoO.js} +7 -7
- package/client/yaml-0qnKYER3.js +206 -0
- package/dist/devtools.js +3298 -3298
- package/dist/index.cjs +41 -41
- package/dist/{index.mjs → index.js} +43 -43
- package/dist/user-app.cjs +42 -42
- package/dist/user-app.iife.js +38 -38
- package/dist/{user-app.mjs → user-app.js} +42 -42
- package/package.json +7 -7
- package/client/assets/html-5-AIf93y.js +0 -74
- package/client/assets/index-cEmzwhNg.js +0 -1096
- package/client/assets/json-t1qiHl76.js +0 -25
- package/client/assets/unocss-runtime-402WFgCt.js +0 -2
- package/client/assets/yaml-FtfhlYqU.js +0 -200
- package/client/html-r4dic7N6.js +0 -84
- package/client/json-6ED1Ntns.js +0 -31
- package/client/unocss-runtime-WFlXz1xh.js +0 -1974
- package/client/yaml-n_HyS7lr.js +0 -206
- /package/dist/{app.mjs → app.js} +0 -0
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
const n=Object.freeze({displayName:"JSON",name:"json",patterns:[{include:"#value"}],repository:{array:{begin:"\\[",beginCaptures:{0:{name:"punctuation.definition.array.begin.json"}},end:"\\]",endCaptures:{0:{name:"punctuation.definition.array.end.json"}},name:"meta.structure.array.json",patterns:[{include:"#value"},{match:",",name:"punctuation.separator.array.json"},{match:"[^\\s\\]]",name:"invalid.illegal.expected-array-separator.json"}]},comments:{patterns:[{begin:"/\\*\\*(?!/)",captures:{0:{name:"punctuation.definition.comment.json"}},end:"\\*/",name:"comment.block.documentation.json"},{begin:"/\\*",captures:{0:{name:"punctuation.definition.comment.json"}},end:"\\*/",name:"comment.block.json"},{captures:{1:{name:"punctuation.definition.comment.json"}},match:"(//).*$\\n?",name:"comment.line.double-slash.js"}]},constant:{match:"\\b(?:true|false|null)\\b",name:"constant.language.json"},number:{match:`(?x) # turn on extended mode
|
|
2
|
-
-? # an optional minus
|
|
3
|
-
(?:
|
|
4
|
-
0 # a zero
|
|
5
|
-
| # ...or...
|
|
6
|
-
[1-9] # a 1-9 character
|
|
7
|
-
\\d* # followed by zero or more digits
|
|
8
|
-
)
|
|
9
|
-
(?:
|
|
10
|
-
(?:
|
|
11
|
-
\\. # a period
|
|
12
|
-
\\d+ # followed by one or more digits
|
|
13
|
-
)?
|
|
14
|
-
(?:
|
|
15
|
-
[eE] # an e character
|
|
16
|
-
[+-]? # followed by an option +/-
|
|
17
|
-
\\d+ # followed by one or more digits
|
|
18
|
-
)? # make exponent optional
|
|
19
|
-
)? # make decimal portion optional`,name:"constant.numeric.json"},object:{begin:"\\{",beginCaptures:{0:{name:"punctuation.definition.dictionary.begin.json"}},end:"\\}",endCaptures:{0:{name:"punctuation.definition.dictionary.end.json"}},name:"meta.structure.dictionary.json",patterns:[{comment:"the JSON object key",include:"#objectkey"},{include:"#comments"},{begin:":",beginCaptures:{0:{name:"punctuation.separator.dictionary.key-value.json"}},end:"(,)|(?=\\})",endCaptures:{1:{name:"punctuation.separator.dictionary.pair.json"}},name:"meta.structure.dictionary.value.json",patterns:[{comment:"the JSON object value",include:"#value"},{match:"[^\\s,]",name:"invalid.illegal.expected-dictionary-separator.json"}]},{match:"[^\\s\\}]",name:"invalid.illegal.expected-dictionary-separator.json"}]},objectkey:{begin:'"',beginCaptures:{0:{name:"punctuation.support.type.property-name.begin.json"}},end:'"',endCaptures:{0:{name:"punctuation.support.type.property-name.end.json"}},name:"string.json support.type.property-name.json",patterns:[{include:"#stringcontent"}]},string:{begin:'"',beginCaptures:{0:{name:"punctuation.definition.string.begin.json"}},end:'"',endCaptures:{0:{name:"punctuation.definition.string.end.json"}},name:"string.quoted.double.json",patterns:[{include:"#stringcontent"}]},stringcontent:{patterns:[{match:`(?x) # turn on extended mode
|
|
20
|
-
\\\\ # a literal backslash
|
|
21
|
-
(?: # ...followed by...
|
|
22
|
-
["\\\\/bfnrt] # one of these characters
|
|
23
|
-
| # ...or...
|
|
24
|
-
u # a u
|
|
25
|
-
[0-9a-fA-F]{4}) # and four hex digits`,name:"constant.character.escape.json"},{match:"\\\\.",name:"invalid.illegal.unrecognized-string-escape.json"}]},value:{patterns:[{include:"#constant"},{include:"#number"},{include:"#string"},{include:"#array"},{include:"#object"},{include:"#comments"}]}},scopeName:"source.json"});var e=[n];export{e as default};
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
const Le=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,ke=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,Ie=/^\s*["[{]|^\s*-?\d{1,16}(\.\d{1,17})?([Ee][+-]?\d+)?\s*$/;function Ne(e,t){if(e==="__proto__"||e==="constructor"&&t&&typeof t=="object"&&"prototype"in t){Fe(e);return}return t}function Fe(e){console.warn(`[destr] Dropping "${e}" key to prevent prototype pollution.`)}function ze(e,t={}){if(typeof e!="string")return e;const r=e.trim();if(e[0]==='"'&&e.at(-1)==='"'&&!e.includes("\\"))return r.slice(1,-1);if(r.length<=9){const s=r.toLowerCase();if(s==="true")return!0;if(s==="false")return!1;if(s==="undefined")return;if(s==="null")return null;if(s==="nan")return Number.NaN;if(s==="infinity")return Number.POSITIVE_INFINITY;if(s==="-infinity")return Number.NEGATIVE_INFINITY}if(!Ie.test(e)){if(t.strict)throw new SyntaxError("[destr] Invalid JSON");return e}try{if(Le.test(e)||ke.test(e)){if(t.strict)throw new Error("[destr] Possible prototype pollution");return JSON.parse(e,Ne)}return JSON.parse(e)}catch(s){if(t.strict)throw s;return e}}const De=/#/g,Ue=/&/g,Ve=/=/g,ee=/\+/g,Be=/%5e/gi,qe=/%60/gi,He=/%7c/gi,Ge=/%20/gi;function We(e){return encodeURI(""+e).replace(He,"|")}function K(e){return We(typeof e=="string"?e:JSON.stringify(e)).replace(ee,"%2B").replace(Ge,"+").replace(De,"%23").replace(Ue,"%26").replace(qe,"`").replace(Be,"^")}function H(e){return K(e).replace(Ve,"%3D")}function we(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function Je(e){return we(e.replace(ee," "))}function Qe(e){return we(e.replace(ee," "))}function Ke(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const r of e.split("&")){const s=r.match(/([^=]+)=?(.*)/)||[];if(s.length<2)continue;const n=Je(s[1]);if(n==="__proto__"||n==="constructor")continue;const i=Qe(s[2]||"");t[n]===void 0?t[n]=i:Array.isArray(t[n])?t[n].push(i):t[n]=[t[n],i]}return t}function Ye(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(r=>`${H(e)}=${K(r)}`).join("&"):`${H(e)}=${K(t)}`:H(e)}function Xe(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>Ye(t,e[t])).filter(Boolean).join("&")}const Ze=/^[\s\w\0+.-]{2,}:([/\\]{1,2})/,et=/^[\s\w\0+.-]{2,}:([/\\]{2})?/,tt=/^([/\\]\s*){2,}[^/\\]/;function be(e,t={}){return typeof t=="boolean"&&(t={acceptRelative:t}),t.strict?Ze.test(e):et.test(e)||(t.acceptRelative?tt.test(e):!1)}const rt=/\/$|\/\?|\/#/;function Y(e="",t){return t?rt.test(e):e.endsWith("/")}function nt(e="",t){if(!t)return(Y(e)?e.slice(0,-1):e)||"/";if(!Y(e,!0))return e||"/";let r=e,s="";const n=e.indexOf("#");n>=0&&(r=e.slice(0,n),s=e.slice(n));const[i,...c]=r.split("?");return(i.slice(0,-1)||"/")+(c.length>0?`?${c.join("?")}`:"")+s}function st(e="",t){if(!t)return e.endsWith("/")?e:e+"/";if(Y(e,!0))return e||"/";let r=e,s="";const n=e.indexOf("#");if(n>=0&&(r=e.slice(0,n),s=e.slice(n),!r))return s;const[i,...c]=r.split("?");return i+"/"+(c.length>0?`?${c.join("?")}`:"")+s}function ot(e,t){if(at(t)||be(e))return e;const r=nt(t);return e.startsWith(r)?e:ft(r,e)}function it(e,t){const r=Se(e),s={...Ke(r.search),...t};return r.search=Xe(s),ut(r)}function at(e){return!e||e==="/"}function ct(e){return e&&e!=="/"}const lt=/^\.?\//;function ft(e,...t){let r=e||"";for(const s of t.filter(n=>ct(n)))if(r){const n=s.replace(lt,"");r=st(r)+n}else r=s;return r}function Se(e="",t){const r=e.match(/^[\s\0]*(blob:|data:|javascript:|vbscript:)(.*)/i);if(r){const[,h,d=""]=r;return{protocol:h.toLowerCase(),pathname:d,href:h+d,auth:"",host:"",search:"",hash:""}}if(!be(e,{acceptRelative:!0}))return t?Se(t+e):ne(e);const[,s="",n,i=""]=e.replace(/\\/g,"/").match(/^[\s\0]*([\w+.-]{2,}:)?\/\/([^/@]+@)?(.*)/)||[],[,c="",a=""]=i.match(/([^#/?]*)(.*)?/)||[],{pathname:l,search:u,hash:o}=ne(a.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:s.toLowerCase(),auth:n?n.slice(0,Math.max(0,n.length-1)):"",host:c,pathname:l,search:u,hash:o}}function ne(e=""){const[t="",r="",s=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:r,hash:s}}function ut(e){const t=e.pathname||"",r=e.search?(e.search.startsWith("?")?"":"?")+e.search:"",s=e.hash||"",n=e.auth?e.auth+"@":"",i=e.host||"";return(e.protocol?e.protocol+"//":"")+n+i+t+r+s}class ht extends Error{constructor(t,r){super(t,r),this.name="FetchError",r?.cause&&!this.cause&&(this.cause=r.cause)}}function pt(e){const t=e.error?.message||e.error?.toString()||"",r=e.request?.method||e.options?.method||"GET",s=e.request?.url||String(e.request)||"/",n=`[${r}] ${JSON.stringify(s)}`,i=e.response?`${e.response.status} ${e.response.statusText}`:"<no response>",c=`${n}: ${i}${t?` ${t}`:""}`,a=new ht(c,e.error?{cause:e.error}:void 0);for(const l of["request","options","response"])Object.defineProperty(a,l,{get(){return e[l]}});for(const[l,u]of[["data","_data"],["status","status"],["statusCode","status"],["statusText","statusText"],["statusMessage","statusText"]])Object.defineProperty(a,l,{get(){return e.response&&e.response[u]}});return a}const dt=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function se(e="GET"){return dt.has(e.toUpperCase())}function mt(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.buffer?!1:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const gt=new Set(["image/svg","application/xml","application/xhtml","application/html"]),yt=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function wt(e=""){if(!e)return"json";const t=e.split(";").shift()||"";return yt.test(t)?"json":gt.has(t)||t.startsWith("text/")?"text":"blob"}function bt(e,t,r=globalThis.Headers){const s={...t,...e};if(t?.params&&e?.params&&(s.params={...t?.params,...e?.params}),t?.query&&e?.query&&(s.query={...t?.query,...e?.query}),t?.headers&&e?.headers){s.headers=new r(t?.headers||{});for(const[n,i]of new r(e?.headers||{}))s.headers.set(n,i)}return s}const St=new Set([408,409,425,429,500,502,503,504]),_t=new Set([101,204,205,304]);function _e(e={}){const{fetch:t=globalThis.fetch,Headers:r=globalThis.Headers,AbortController:s=globalThis.AbortController}=e;async function n(a){const l=a.error&&a.error.name==="AbortError"&&!a.options.timeout||!1;if(a.options.retry!==!1&&!l){let o;typeof a.options.retry=="number"?o=a.options.retry:o=se(a.options.method)?0:1;const h=a.response&&a.response.status||500;if(o>0&&(Array.isArray(a.options.retryStatusCodes)?a.options.retryStatusCodes.includes(h):St.has(h))){const d=a.options.retryDelay||0;return d>0&&await new Promise(g=>setTimeout(g,d)),i(a.request,{...a.options,retry:o-1,timeout:a.options.timeout})}}const u=pt(a);throw Error.captureStackTrace&&Error.captureStackTrace(u,i),u}const i=async function(l,u={}){const o={request:l,options:bt(u,e.defaults,r),response:void 0,error:void 0};if(o.options.method=o.options.method?.toUpperCase(),o.options.onRequest&&await o.options.onRequest(o),typeof o.request=="string"&&(o.options.baseURL&&(o.request=ot(o.request,o.options.baseURL)),(o.options.query||o.options.params)&&(o.request=it(o.request,{...o.options.params,...o.options.query}))),o.options.body&&se(o.options.method)&&(mt(o.options.body)?(o.options.body=typeof o.options.body=="string"?o.options.body:JSON.stringify(o.options.body),o.options.headers=new r(o.options.headers||{}),o.options.headers.has("content-type")||o.options.headers.set("content-type","application/json"),o.options.headers.has("accept")||o.options.headers.set("accept","application/json")):("pipeTo"in o.options.body&&typeof o.options.body.pipeTo=="function"||typeof o.options.body.pipe=="function")&&("duplex"in o.options||(o.options.duplex="half"))),!o.options.signal&&o.options.timeout){const d=new s;setTimeout(()=>d.abort(),o.options.timeout),o.options.signal=d.signal}try{o.response=await t(o.request,o.options)}catch(d){return o.error=d,o.options.onRequestError&&await o.options.onRequestError(o),await n(o)}if(o.response.body&&!_t.has(o.response.status)&&o.options.method!=="HEAD"){const d=(o.options.parseResponse?"json":o.options.responseType)||wt(o.response.headers.get("content-type")||"");switch(d){case"json":{const g=await o.response.text(),$=o.options.parseResponse||ze;o.response._data=$(g);break}case"stream":{o.response._data=o.response.body;break}default:o.response._data=await o.response[d]()}}return o.options.onResponse&&await o.options.onResponse(o),!o.options.ignoreResponseError&&o.response.status>=400&&o.response.status<600?(o.options.onResponseError&&await o.options.onResponseError(o),await n(o)):o.response},c=async function(l,u){return(await i(l,u))._data};return c.raw=i,c.native=(...a)=>t(...a),c.create=(a={})=>_e({...e,defaults:{...e.defaults,...a}}),c}const te=function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")}(),$t=te.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),vt=te.Headers,Et=te.AbortController,xt=_e({fetch:$t,Headers:vt,AbortController:Et}),Ct=xt;function At(e){const t=e.length;let r=-1,s,n="";const i=e.charCodeAt(0);for(;++r<t;){if(s=e.charCodeAt(r),s===0){n+="�";continue}if(s===37){n+="\\%";continue}if(s===44){n+="\\,";continue}if(s>=1&&s<=31||s===127||r===0&&s>=48&&s<=57||r===1&&s>=48&&s<=57&&i===45){n+=`\\${s.toString(16)} `;continue}if(r===0&&t===1&&s===45){n+=`\\${e.charAt(r)}`;continue}if(s>=128||s===45||s===95||s>=48&&s<=57||s>=65&&s<=90||s>=97&&s<=122){n+=e.charAt(r);continue}n+=`\\${e.charAt(r)}`}return n}const G=At;function M(e=[]){return Array.isArray(e)?e:[e]}function B(e){return Array.from(new Set(e))}function Ot(e,t){return e.reduce((r,s)=>(r.findIndex(i=>t(s,i))===-1&&r.push(s),r),[])}function A(e){return typeof e=="string"}function F(e){return A(e)?e:(Array.isArray(e)?e:Object.entries(e)).filter(t=>t[1]!=null)}function Rt(e){return Array.isArray(e)?e.find(t=>!Array.isArray(t)||Array.isArray(t[0]))?e.map(t=>F(t)):[e]:[F(e)]}function jt(e){return e.filter(([t,r],s)=>{if(t.startsWith("$$"))return!1;for(let n=s-1;n>=0;n--)if(e[n][0]===t&&e[n][1]===r)return!1;return!0})}function W(e){return e==null?"":jt(e).map(([t,r])=>r!=null?`${t}:${r};`:void 0).filter(Boolean).join("")}function D(e){return e&&typeof e=="object"&&!Array.isArray(e)}function $e(e,t,r=!1){const s=e,n=t;if(Array.isArray(n))return r&&Array.isArray(n)?[...s,...n]:[...n];const i={...s};return D(s)&&D(n)&&Object.keys(n).forEach(c=>{D(s[c])&&D(n[c])||Array.isArray(s[c])&&Array.isArray(n[c])?i[c]=$e(s[c],n[c],r):Object.assign(i,{[c]:n[c]})}),i}function V(e){let t,r,s;if(Array.isArray(e)){for(r=Array(t=e.length);t--;)r[t]=(s=e[t])&&typeof s=="object"?V(s):s;return r}if(Object.prototype.toString.call(e)==="[object Object]"){r={};for(t in e)t==="__proto__"?Object.defineProperty(r,t,{value:V(e[t]),configurable:!0,enumerable:!0,writable:!0}):r[t]=(s=e[t])&&typeof s=="object"?V(s):s;return r}return e}function Tt(e){return A(e[0])}function Mt(e){return A(e[0])}const oe="$$shortcut-no-merge";function Pt(e){return typeof e=="function"?{match:e}:e}function ie(e){return e.length===3}function Lt(e){return e!=null}function kt(){}var It=Object.defineProperty,Nt=(e,t,r)=>t in e?It(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,Ft=(e,t,r)=>(Nt(e,typeof t!="symbol"?t+"":t,r),r);class zt{constructor(){Ft(this,"_map",new Map)}get(t,r){const s=this._map.get(t);if(s)return s.get(r)}getFallback(t,r,s){let n=this._map.get(t);return n||(n=new Map,this._map.set(t,n)),n.has(r)||n.set(r,s),n.get(r)}set(t,r,s){let n=this._map.get(t);return n||(n=new Map,this._map.set(t,n)),n.set(r,s),this}has(t,r){return this._map.get(t)?.has(r)}delete(t,r){return this._map.get(t)?.delete(r)||!1}deleteTop(t){return this._map.delete(t)}map(t){return Array.from(this._map.entries()).flatMap(([r,s])=>Array.from(s.entries()).map(([n,i])=>t(i,r,n)))}}var Dt=Object.defineProperty,Ut=(e,t,r)=>t in e?Dt(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,Vt=(e,t,r)=>(Ut(e,typeof t!="symbol"?t+"":t,r),r);class ve extends Set{constructor(t){super(t),Vt(this,"_map"),this._map??(this._map=new Map)}add(t){return this._map??(this._map=new Map),this._map.set(t,(this._map.get(t)??0)+1),super.add(t)}delete(t){return this._map.delete(t),super.delete(t)}clear(){this._map.clear(),super.clear()}getCount(t){return this._map.get(t)??0}setCount(t,r){return this._map.set(t,r),super.add(t)}}function J(e){return e instanceof ve}const U={};function Bt(e=["-",":"]){const t=e.join("|");return U[t]||(U[t]=new RegExp(`((?:[!@<~\\w+:_/-]|\\[&?>?:?\\S*\\])+?)(${t})\\(((?:[~!<>\\w\\s:/\\\\,%#.$?-]|\\[.*?\\])+?)\\)(?!\\s*?=>)`,"gm")),U[t].lastIndex=0,U[t]}function qt(e,t=["-",":"],r=5){const s=Bt(t);let n,i=e.toString();const c=new Set,a=new Map;do n=!1,i=i.replace(s,(u,o,h,d,g)=>{if(!t.includes(h))return u;n=!0,c.add(o+h);const $=g+o.length+h.length+1,y={length:u.length,items:[]};a.set(g,y);for(const p of[...d.matchAll(/\S+/g)]){const v=$+p.index;let w=a.get(v)?.items;w?a.delete(v):w=[{offset:v,length:p[0].length,className:p[0]}];for(const S of w)S.className=S.className==="~"?o:S.className.replace(/^(!?)(.*)/,`$1${o}${h}$2`),y.items.push(S)}return"$".repeat(u.length)}),r-=1;while(n&&r);let l;if(typeof e=="string"){l="";let u=0;for(const[o,h]of a)l+=e.slice(u,o),l+=h.items.map(d=>d.className).join(" "),u=o+h.length;l+=e.slice(u)}else{l=e;for(const[u,o]of a)l.overwrite(u,u+o.length,o.items.map(h=>h.className).join(" "))}return{prefixes:Array.from(c),hasChanged:n,groupsByOffset:a,get expanded(){return l.toString()}}}function Ht(e,t=["-",":"],r=5){const s=qt(e,t,r);return typeof e=="string"?s.expanded:e}const ae=new Set;function Ee(e){ae.has(e)||(console.warn("[unocss]",e),ae.add(e))}const Gt=/[\\:]?[\s'"`;{}]+/g;function Wt(e){return e.split(Gt)}const Jt={name:"@unocss/core/extractor-split",order:0,extract({code:e}){return Wt(e)}};function Qt(){return{events:{},emit(e,...t){(this.events[e]||[]).forEach(r=>r(...t))},on(e,t){return(this.events[e]=this.events[e]||[]).push(t),()=>this.events[e]=(this.events[e]||[]).filter(r=>r!==t)}}}const X="default",Z="preflights",Kt="shortcuts",Yt="imports",Xt={[Yt]:-200,[Z]:-100,[Kt]:-10,[X]:0};function xe(e){return M(e).flatMap(t=>Array.isArray(t)?[t]:Object.entries(t))}const ce="_uno_resolved";function Zt(e){let t=typeof e=="function"?e():e;if(ce in t)return t;t={...t},Object.defineProperty(t,ce,{value:!0,enumerable:!1});const r=t.shortcuts?xe(t.shortcuts):void 0;if(t.shortcuts=r,t.prefix||t.layer){const s=n=>{n[2]||(n[2]={});const i=n[2];i.prefix==null&&t.prefix&&(i.prefix=M(t.prefix)),i.layer==null&&t.layer&&(i.layer=t.layer)};r?.forEach(s),t.rules?.forEach(s)}return t}function Ce(e){const t=Zt(e);if(!t.presets)return[t];const r=(t.presets||[]).flatMap(M).flatMap(Ce);return[t,...r]}function le(e={},t={}){const r=Object.assign({},t,e),s=Ot((r.presets||[]).flatMap(M).flatMap(Ce),(f,b)=>f.name===b.name),n=[...s.filter(f=>f.enforce==="pre"),...s.filter(f=>!f.enforce),...s.filter(f=>f.enforce==="post")],i=[...n,r],c=[...i].reverse(),a=Object.assign({},Xt,...i.map(f=>f.layers));function l(f){return B(i.flatMap(b=>M(b[f]||[])))}const u=l("extractors");let o=c.find(f=>f.extractorDefault!==void 0)?.extractorDefault;o===void 0&&(o=Jt),o&&!u.includes(o)&&u.unshift(o),u.sort((f,b)=>(f.order||0)-(b.order||0));const h=l("rules"),d={},g=h.length,$=h.map((f,b)=>{if(Tt(f)){M(f[2]?.prefix||"").forEach(C=>{d[C+f[0]]=[b,f[1],f[2],f]});return}return[b,...f]}).filter(Boolean).reverse();let y=er(i.map(f=>f.theme));const p=l("extendTheme");for(const f of p)y=f(y)||y;const v={templates:B(i.flatMap(f=>M(f.autocomplete?.templates))),extractors:i.flatMap(f=>M(f.autocomplete?.extractors)).sort((f,b)=>(f.order||0)-(b.order||0)),shorthands:tr(i.map(f=>f.autocomplete?.shorthands||{}))};let w=l("separators");w.length||(w=[":","-"]);const S={mergeSelectors:!0,warn:!0,sortLayers:f=>f,...r,blocklist:l("blocklist"),presets:n,envMode:r.envMode||"build",shortcutsLayer:r.shortcutsLayer||"shortcuts",layers:a,theme:y,rulesSize:g,rulesDynamic:$,rulesStaticMap:d,preprocess:l("preprocess"),postprocess:l("postprocess"),preflights:l("preflights"),autocomplete:v,variants:l("variants").map(Pt).sort((f,b)=>(f.order||0)-(b.order||0)),shortcuts:xe(l("shortcuts")).reverse(),extractors:u,safelist:l("safelist"),separators:w,details:r.details??r.envMode==="dev"};for(const f of i)f?.configResolved?.(S);return S}function er(e){return e.map(t=>t?V(t):{}).reduce((t,r)=>$e(t,r),{})}function tr(e){return e.reduce((t,r)=>{const s={};for(const n in r){const i=r[n];Array.isArray(i)?s[n]=`(${i.join("|")})`:s[n]=i}return{...t,...s}},{})}const rr="0.58.3";var nr=Object.defineProperty,sr=(e,t,r)=>t in e?nr(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,I=(e,t,r)=>(sr(e,typeof t!="symbol"?t+"":t,r),r);class or{constructor(t={},r={}){this.userConfig=t,this.defaults=r,I(this,"version",rr),I(this,"_cache",new Map),I(this,"config"),I(this,"blocked",new Set),I(this,"parentOrders",new Map),I(this,"events",Qt()),this.config=le(t,r),this.events.emit("config",this.config)}setConfig(t,r){t&&(r&&(this.defaults=r),this.userConfig=t,this.blocked.clear(),this.parentOrders.clear(),this._cache.clear(),this.config=le(t,this.defaults),this.events.emit("config",this.config))}async applyExtractors(t,r,s=new Set){const n={original:t,code:t,id:r,extracted:s,envMode:this.config.envMode};for(const i of this.config.extractors){const c=await i.extract?.(n);if(c)if(J(c)&&J(s))for(const a of c)s.setCount(a,s.getCount(a)+c.getCount(a));else for(const a of c)s.add(a)}return s}makeContext(t,r){const s={rawSelector:t,currentSelector:r[1],theme:this.config.theme,generator:this,variantHandlers:r[2],constructCSS:(...n)=>this.constructCustomCSS(s,...n),variantMatch:r};return s}async parseToken(t,r){if(this.blocked.has(t))return;const s=`${t}${r?` ${r}`:""}`;if(this._cache.has(s))return this._cache.get(s);let n=t;for(const u of this.config.preprocess)n=u(t);if(this.isBlocked(n)){this.blocked.add(t),this._cache.set(s,null);return}const i=await this.matchVariants(t,n);if(!i||this.isBlocked(i[1])){this.blocked.add(t),this._cache.set(s,null);return}const c=this.makeContext(t,[r||i[0],i[1],i[2],i[3]]);this.config.details&&(c.variants=[...i[3]]);const a=await this.expandShortcut(c.currentSelector,c),l=a?await this.stringifyShortcuts(c.variantMatch,c,a[0],a[1]):(await this.parseUtil(c.variantMatch,c))?.map(u=>this.stringifyUtil(u,c)).filter(Lt);if(l?.length)return this._cache.set(s,l),l;this._cache.set(s,null)}async generate(t,r={}){const{id:s,scope:n,preflights:i=!0,safelist:c=!0,minify:a=!1,extendedInfo:l=!1}=r,u=A(t)?await this.applyExtractors(t,s,l?new ve:new Set):Array.isArray(t)?new Set(t):t;c&&this.config.safelist.forEach(f=>{u.has(f)||u.add(f)});const o=a?"":`
|
|
2
|
-
`,h=new Set([X]),d=l?new Map:new Set,g=new Map;let $={};const y=Array.from(u).map(async f=>{if(d.has(f))return;const b=await this.parseToken(f);if(b!=null){d instanceof Map?d.set(f,{data:b,count:J(u)?u.getCount(f):-1}):d.add(f);for(const x of b){const C=x[3]||"",O=x[4]?.layer;g.has(C)||g.set(C,[]),g.get(C).push(x),O&&h.add(O)}}});await Promise.all(y),await(async()=>{if(!i)return;const f={generator:this,theme:this.config.theme},b=new Set([]);this.config.preflights.forEach(({layer:x=Z})=>{h.add(x),b.add(x)}),$=Object.fromEntries(await Promise.all(Array.from(b).map(async x=>{const O=(await Promise.all(this.config.preflights.filter(L=>(L.layer||Z)===x).map(async L=>await L.getCSS(f)))).filter(Boolean).join(o);return[x,O]})))})();const p=this.config.sortLayers(Array.from(h).sort((f,b)=>(this.config.layers[f]??0)-(this.config.layers[b]??0)||f.localeCompare(b))),v={},w=f=>{if(v[f])return v[f];let b=Array.from(g).sort((C,O)=>(this.parentOrders.get(C[0])??0)-(this.parentOrders.get(O[0])??0)||C[0]?.localeCompare(O[0]||"")||0).map(([C,O])=>{const L=O.length,k=O.filter(m=>(m[4]?.layer||X)===f).sort((m,_)=>m[0]-_[0]||(m[4]?.sort||0)-(_[4]?.sort||0)||m[5]?.currentSelector?.localeCompare(_[5]?.currentSelector??"")||m[1]?.localeCompare(_[1]||"")||m[2]?.localeCompare(_[2]||"")||0).map(([,m,_,,E,,R])=>[[[(m&&cr(m,n))??"",E?.sort??0]],_,!!(R??E?.noMerge)]);if(!k.length)return;const N=k.reverse().map(([m,_,E],R)=>{if(!E&&this.config.mergeSelectors)for(let j=R+1;j<L;j++){const P=k[j];if(P&&!P[2]&&(m&&P[0]||m==null&&P[0]==null)&&P[1]===_)return m&&P[0]&&P[0].push(...m),null}const T=m?B(m.sort((j,P)=>j[1]-P[1]||j[0]?.localeCompare(P[0]||"")||0).map(j=>j[0]).filter(Boolean)):[];return T.length?`${T.join(`,${o}`)}{${_}}`:_}).filter(Boolean).reverse().join(o);if(!C)return N;const z=C.split(" $$ ");return`${z.join("{")}{${o}${N}${o}${"}".repeat(z.length)}`}).filter(Boolean).join(o);i&&(b=[$[f],b].filter(Boolean).join(o));const x=a?"":`/* layer: ${f} */${o}`;return v[f]=b?x+b:""},S=(f=p,b)=>f.filter(x=>!b?.includes(x)).map(x=>w(x)||"").filter(Boolean).join(o);return{get css(){return S()},layers:p,matched:d,getLayers:S,getLayer:w}}async matchVariants(t,r){const s=new Set,n=[];let i=r||t,c=!0;const a={rawSelector:t,theme:this.config.theme,generator:this};for(;c;){c=!1;for(const l of this.config.variants){if(!l.multiPass&&s.has(l))continue;let u=await l.match(i,a);if(u){if(A(u)){if(u===i)continue;u={matcher:u}}i=u.matcher,n.unshift(u),s.add(l),c=!0;break}}if(!c)break;if(n.length>500)throw new Error(`Too many variants applied to "${t}"`)}return[t,i,n,s]}applyVariants(t,r=t[4],s=t[1]){const i=r.slice().sort((u,o)=>(u.order||0)-(o.order||0)).reduceRight((u,o)=>h=>{const d=o.body?.(h.entries)||h.entries,g=Array.isArray(o.parent)?o.parent:[o.parent,void 0];return(o.handle??fr)({...h,entries:d,selector:o.selector?.(h.selector,d)||h.selector,parent:g[0]||h.parent,parentOrder:g[1]||h.parentOrder,layer:o.layer||h.layer,sort:o.sort||h.sort},u)},u=>u)({prefix:"",selector:lr(s),pseudo:"",entries:t[2]}),{parent:c,parentOrder:a}=i;c!=null&&a!=null&&this.parentOrders.set(c,a);const l={selector:[i.prefix,i.selector,i.pseudo].join(""),entries:i.entries,parent:c,layer:i.layer,sort:i.sort,noMerge:i.noMerge};for(const u of this.config.postprocess)u(l);return l}constructCustomCSS(t,r,s){const n=F(r);if(A(n))return n;const{selector:i,entries:c,parent:a}=this.applyVariants([0,s||t.rawSelector,n,void 0,t.variantHandlers]),l=`${i}{${W(c)}}`;return a?`${a}{${l}}`:l}async parseUtil(t,r,s=!1,n){const[i,c,a]=A(t)?await this.matchVariants(t):t;this.config.details&&(r.rules=r.rules??[]);const l=this.config.rulesStaticMap[c];if(l&&l[1]&&(s||!l[2]?.internal)){this.config.details&&r.rules.push(l[3]);const o=l[0],h=F(l[1]),d=l[2];return A(h)?[[o,h,d]]:[[o,i,h,d,a]]}r.variantHandlers=a;const{rulesDynamic:u}=this.config;for(const[o,h,d,g]of u){if(g?.internal&&!s)continue;let $=c;if(g?.prefix){const w=M(g.prefix);if(n){const S=M(n);if(!w.some(f=>S.includes(f)))continue}else{const S=w.find(f=>c.startsWith(f));if(S==null)continue;$=c.slice(S.length)}}const y=$.match(h);if(!y)continue;const p=await d(y,r);if(!p)continue;this.config.details&&r.rules.push([h,d,g]);const v=Rt(p).filter(w=>w.length);if(v.length)return v.map(w=>A(w)?[o,w,g]:[o,i,w,g,a])}}stringifyUtil(t,r){if(!t)return;if(ie(t))return[t[0],void 0,t[1],void 0,t[2],this.config.details?r:void 0,void 0];const{selector:s,entries:n,parent:i,layer:c,sort:a,noMerge:l}=this.applyVariants(t),u=W(n);if(!u)return;const{layer:o,sort:h,...d}=t[3]??{},g={...d,layer:c??o,sort:a??h};return[t[0],s,u,i,g,this.config.details?r:void 0,l]}async expandShortcut(t,r,s=5){if(s===0)return;const n=this.config.details?a=>{r.shortcuts=r.shortcuts??[],r.shortcuts.push(a)}:kt;let i,c;for(const a of this.config.shortcuts){let l=t;if(a[2]?.prefix){const o=M(a[2].prefix).find(h=>t.startsWith(h));if(o==null)continue;l=t.slice(o.length)}if(Mt(a)){if(a[0]===l){i=i||a[2],c=a[1],n(a);break}}else{const u=l.match(a[0]);if(u&&(c=a[1](u,r)),c){i=i||a[2],n(a);break}}}if(A(c)&&(c=Ht(c.trim()).split(/\s+/g)),!c){const[a,l]=A(t)?await this.matchVariants(t):t;if(a!==l){const u=await this.expandShortcut(l,r,s-1);u&&(c=u[0].map(o=>A(o)?a.replace(l,o):o))}}if(c)return[(await Promise.all(c.map(async a=>(A(a)?(await this.expandShortcut(a,r,s-1))?.[0]:void 0)||[a]))).flat(1).filter(Boolean),i]}async stringifyShortcuts(t,r,s,n={layer:this.config.shortcutsLayer}){const i=new zt,c=(await Promise.all(B(s).map(async o=>{const h=A(o)?await this.parseUtil(o,r,!0,n.prefix):[[Number.POSITIVE_INFINITY,"{inline}",F(o),void 0,[]]];return!h&&this.config.warn&&Ee(`unmatched utility "${o}" in shortcut "${t[1]}"`),h||[]}))).flat(1).filter(Boolean).sort((o,h)=>o[0]-h[0]),[a,,l]=t,u=[];for(const o of c){if(ie(o)){u.push([o[0],void 0,o[1],void 0,o[2],r,void 0]);continue}const{selector:h,entries:d,parent:g,sort:$,noMerge:y}=this.applyVariants(o,[...o[4],...l],a);i.getFallback(h,g,[[],o[0]])[0].push([d,!!(y??o[3]?.noMerge),$??0])}return u.concat(i.map(([o,h],d,g)=>{const $=(p,v,w)=>{const S=Math.max(...w.map(b=>b[1])),f=w.map(b=>b[0]);return(p?[f.flat(1)]:f).map(b=>{const x=W(b);if(x)return[h,d,x,g,{...n,noMerge:v,sort:S},r,void 0]})};return[[o.filter(([,p])=>p).map(([p,,v])=>[p,v]),!0],[o.filter(([,p])=>!p).map(([p,,v])=>[p,v]),!1]].map(([p,v])=>[...$(!1,v,p.filter(([w])=>w.some(S=>S[0]===oe))),...$(!0,v,p.filter(([w])=>w.every(S=>S[0]!==oe)))])}).flat(2).filter(Boolean))}isBlocked(t){return!t||this.config.blocklist.some(r=>typeof r=="function"?r(t):A(r)?r===t:r.test(t))}}function ir(e,t){return new or(e,t)}const Ae=/\s\$\$\s+/g;function ar(e){return Ae.test(e)}function cr(e,t){return ar(e)?e.replace(Ae,t?` ${t} `:" "):t?`${t} ${e}`:e}const fe=/^\[(.+?)(~?=)"(.*)"\]$/;function lr(e){return fe.test(e)?e.replace(fe,(t,r,s,n)=>`[${G(r)}${s}"${G(n)}"]`):`.${G(e)}`}function fr(e,t){return t(e)}const ur=Object.freeze({left:0,top:0,width:16,height:16}),q=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Oe=Object.freeze({...ur,...q}),hr=Object.freeze({...Oe,body:"",hidden:!1}),pr=Object.freeze({width:null,height:null}),Re=Object.freeze({...pr,...q});function dr(e,t){const r={};!e.hFlip!=!t.hFlip&&(r.hFlip=!0),!e.vFlip!=!t.vFlip&&(r.vFlip=!0);const s=((e.rotate||0)+(t.rotate||0))%4;return s&&(r.rotate=s),r}function ue(e,t){const r=dr(e,t);for(const s in hr)s in q?s in e&&!(s in r)&&(r[s]=q[s]):s in t?r[s]=t[s]:s in e&&(r[s]=e[s]);return r}function mr(e,t){const r=e.icons,s=e.aliases||Object.create(null),n=Object.create(null);function i(c){if(r[c])return n[c]=[];if(!(c in n)){n[c]=null;const a=s[c]&&s[c].parent,l=a&&i(a);l&&(n[c]=[a].concat(l))}return n[c]}return(t||Object.keys(r).concat(Object.keys(s))).forEach(i),n}function he(e,t,r){const s=e.icons,n=e.aliases||Object.create(null);let i={};function c(a){i=ue(s[a]||n[a],i)}return c(t),r.forEach(c),ue(e,i)}function gr(e,t){if(e.icons[t])return he(e,t,[]);const r=mr(e,[t])[t];return r?he(e,t,r):null}const yr=/(-?[0-9.]*[0-9]+[0-9.]*)/g,wr=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function pe(e,t,r){if(t===1)return e;if(r=r||100,typeof e=="number")return Math.ceil(e*t*r)/r;if(typeof e!="string")return e;const s=e.split(yr);if(s===null||!s.length)return e;const n=[];let i=s.shift(),c=wr.test(i);for(;;){if(c){const a=parseFloat(i);isNaN(a)?n.push(i):n.push(Math.ceil(a*t*r)/r)}else n.push(i);if(i=s.shift(),i===void 0)return n.join("");c=!c}}function br(e,t="defs"){let r="";const s=e.indexOf("<"+t);for(;s>=0;){const n=e.indexOf(">",s),i=e.indexOf("</"+t);if(n===-1||i===-1)break;const c=e.indexOf(">",i);if(c===-1)break;r+=e.slice(n+1,i).trim(),e=e.slice(0,s).trim()+e.slice(c+1)}return{defs:r,content:e}}function Sr(e,t){return e?"<defs>"+e+"</defs>"+t:t}function _r(e,t,r){const s=br(e);return Sr(s.defs,t+s.content+r)}const re=e=>e==="unset"||e==="undefined"||e==="none";function $r(e,t){const r={...Oe,...e},s={...Re,...t},n={left:r.left,top:r.top,width:r.width,height:r.height};let i=r.body;[r,s].forEach(y=>{const p=[],v=y.hFlip,w=y.vFlip;let S=y.rotate;v?w?S+=2:(p.push("translate("+(n.width+n.left).toString()+" "+(0-n.top).toString()+")"),p.push("scale(-1 1)"),n.top=n.left=0):w&&(p.push("translate("+(0-n.left).toString()+" "+(n.height+n.top).toString()+")"),p.push("scale(1 -1)"),n.top=n.left=0);let f;switch(S<0&&(S-=Math.floor(S/4)*4),S=S%4,S){case 1:f=n.height/2+n.top,p.unshift("rotate(90 "+f.toString()+" "+f.toString()+")");break;case 2:p.unshift("rotate(180 "+(n.width/2+n.left).toString()+" "+(n.height/2+n.top).toString()+")");break;case 3:f=n.width/2+n.left,p.unshift("rotate(-90 "+f.toString()+" "+f.toString()+")");break}S%2===1&&(n.left!==n.top&&(f=n.left,n.left=n.top,n.top=f),n.width!==n.height&&(f=n.width,n.width=n.height,n.height=f)),p.length&&(i=_r(i,'<g transform="'+p.join(" ")+'">',"</g>"))});const c=s.width,a=s.height,l=n.width,u=n.height;let o,h;c===null?(h=a===null?"1em":a==="auto"?u:a,o=pe(h,l/u)):(o=c==="auto"?l:c,h=a===null?pe(o,u/l):a==="auto"?u:a);const d={},g=(y,p)=>{re(p)||(d[y]=p.toString())};g("width",o),g("height",h);const $=[n.left,n.top,l,u];return d.viewBox=$.join(" "),{attributes:d,viewBox:$,body:i}}function vr(e){return e.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(/</g,"%3C").replace(/>/g,"%3E").replace(/\s+/g," ")}function Er(e){let t=e.startsWith("<svg>")?e.replace("<svg>","<svg >"):e;return!t.includes(" xmlns:xlink=")&&t.includes(" xlink:")&&(t=t.replace("<svg ",'<svg xmlns:xlink="http://www.w3.org/1999/xlink" ')),t.includes(" xmlns=")||(t=t.replace("<svg ",'<svg xmlns="http://www.w3.org/2000/svg" ')),vr(t)}function xr(e){return e.replace(/(['"])\s*\n\s*([^>\\/\s])/g,"$1 $2").replace(/(["';{}><])\s*\n\s*/g,"$1").replace(/\s*\n\s*/g," ").replace(/\s+"/g,'"').replace(/="\s+/g,'="').trim()}const Cr=/\swidth\s*=\s*["'](\w+)["']/,Ar=/\sheight\s*=\s*["'](\w+)["']/,Q=/<svg\s+/;function Or(e,t,r){const s=e.slice(0,e.indexOf(">")),n=(i,c)=>{const a=c.exec(s),l=a!=null,u=t[i];return!u&&!re(u)&&(typeof r=="number"?r>0&&(t[i]=`${r}em`):a&&(t[i]=a[1])),l};return[n("width",Cr),n("height",Ar)]}async function je(e,t,r,s,n,i){const{scale:c,addXmlNs:a=!1}=s??{},{additionalProps:l={},iconCustomizer:u}=s?.customizations??{},o=await n?.()??{};await u?.(t,r,o),Object.keys(l).forEach(y=>{const p=l[y];p!=null&&(o[y]=p)}),i?.(o);const[h,d]=Or(e,o,c);a&&(!e.includes("xmlns=")&&!o.xmlns&&(o.xmlns="http://www.w3.org/2000/svg"),!e.includes("xmlns:xlink=")&&e.includes("xlink:")&&!o["xmlns:xlink"]&&(o["xmlns:xlink"]="http://www.w3.org/1999/xlink"));const g=Object.keys(o).map(y=>y==="width"&&h||y==="height"&&d?null:`${y}="${o[y]}"`).filter(y=>y!=null);if(g.length&&(e=e.replace(Q,`<svg ${g.join(" ")} `)),s){const{defaultStyle:y,defaultClass:p}=s;p&&!e.includes("class=")&&(e=e.replace(Q,`<svg class="${p}" `)),y&&!e.includes("style=")&&(e=e.replace(Q,`<svg style="${y}" `))}const $=s?.usedProps;return $&&(Object.keys(l).forEach(y=>{const p=o[y];p!=null&&($[y]=p)}),typeof o.width<"u"&&o.width!==null&&($.width=o.width),typeof o.height<"u"&&o.height!==null&&($.height=o.height)),e}async function de(e,t,r,s){let n;try{if(typeof e=="function")n=await e(r);else{const i=e[r];n=typeof i=="function"?await i():i}}catch(i){console.warn(`Failed to load custom icon "${r}" in "${t}":`,i);return}if(n){const i=n.indexOf("<svg");i>0&&(n=n.slice(i));const{transform:c}=s?.customizations??{};return n=typeof c=="function"?await c(n,t,r):n,n.startsWith("<svg")?await je(s?.customizations?.trimCustomSvg===!0?xr(n):n,t,r,s,void 0):(console.warn(`Custom icon "${r}" in "${t}" is not a valid SVG`),n)}}async function Te(e,t,r,s){let n;const{customize:i}=s?.customizations??{};for(const c of r)if(n=gr(e,c),n){let a={...Re};typeof i=="function"&&(a=i(a));const{attributes:{width:l,height:u,...o},body:h}=$r(n,a),d=s?.scale;return await je(`<svg >${h}</svg>`,t,c,s,()=>({...o}),g=>{const $=(y,p)=>{const v=g[y];let w;if(!re(v)){if(v)return;typeof d=="number"?d&&(w=`${d}em`):w=p}w?g[y]=w:delete g[y]};$("width",l),$("height",u)})}}const Me=async(e,t,r)=>{const s=r?.customCollections?.[e];if(s)if(typeof s=="function"){let n;try{n=await s(t)}catch(i){console.warn(`Failed to load custom icon "${t}" in "${e}":`,i);return}if(n){if(typeof n=="string")return await de(()=>n,e,t,r);if("icons"in n){const i=[t,t.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),t.replace(/([a-z])(\d+)/g,"$1-$2")];return await Te(n,e,i,r)}}}else return await de(s,e,t,r)};function Rr(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var jr=["academicons","akar-icons","ant-design","arcticons","basil","bi","bpmn","brandico","bx","bxl","bxs","bytesize","carbon","charm","ci","cib","cif","cil","circle-flags","circum","clarity","codicon","covid","cryptocurrency-color","cryptocurrency","dashicons","devicon-line","devicon-original","devicon-plain","devicon","ei","el","emblemicons","emojione-monotone","emojione-v1","emojione","entypo-social","entypo","eos-icons","ep","et","eva","fa-brands","fa-regular","fa-solid","fa","fa6-brands","fa6-regular","fa6-solid","fad","fe","feather","file-icons","flag","flagpack","flat-color-icons","flat-ui","fluent-emoji-flat","fluent-emoji-high-contrast","fluent-emoji","fluent-mdl2","fluent","fontelico","fontisto","formkit","foundation","fxemoji","gala","game-icons","geo","gg","gis","gravity-ui","gridicons","grommet-icons","guidance","healthicons","heroicons-outline","heroicons-solid","heroicons","humbleicons","ic","icomoon-free","icon-park-outline","icon-park-solid","icon-park-twotone","icon-park","iconamoon","iconoir","icons8","il","ion","iwwa","jam","la","lets-icons","line-md","logos","ls","lucide","majesticons","maki","map","material-symbols-light","material-symbols","mdi-light","mdi","medical-icon","memory","meteocons","mi","mingcute","mono-icons","mynaui","nimbus","nonicons","noto-v1","noto","octicon","oi","ooui","openmoji","pajamas","pepicons-pencil","pepicons-pop","pepicons-print","pepicons","ph","pixelarticons","prime","ps","quill","radix-icons","raphael","ri","si-glyph","simple-icons","simple-line-icons","skill-icons","solar","streamline-emojis","streamline","subway","svg-spinners","system-uicons","tabler","tdesign","teenyicons","topcoat","twemoji","typcn","uil","uim","uis","uit","uiw","vaadin","vs","vscode-icons","websymbol","whh","wi","wpf","zmdi","zondicons"];const Tr=Rr(jr),Mr=3;function Pr(e){return(t={})=>{const{scale:r=1,mode:s="auto",prefix:n="i-",warn:i=!1,collections:c,extraProperties:a={},customizations:l={},autoInstall:u=!1,layer:o="icons",unit:h}=t,d={addXmlNs:!0,scale:r,customCollections:c,autoInstall:u,warn:void 0,customizations:{...l,additionalProps:{...a},trimCustomSvg:!0,async iconCustomizer($,y,p){await l.iconCustomizer?.($,y,p),h&&(p.width||(p.width=`${r}${h}`),p.height||(p.height=`${r}${h}`))}}};let g;return{name:"@unocss/preset-icons",enforce:"pre",options:t,layers:{icons:-30},rules:[[/^([a-z0-9:_-]+)(?:\?(mask|bg|auto))?$/,async([$,y,p=s])=>{let v="",w="",S;g=g||await e(t);const f={};if(y.includes(":"))[v,w]=y.split(":"),S=await g(v,w,{...d,usedProps:f});else{const x=y.split(/-/g);for(let C=Mr;C>=1&&(v=x.slice(0,C).join("-"),w=x.slice(C).join("-"),S=await g(v,w,{...d,usedProps:f}),!S);C--);}if(!S){i&&Ee(`failed to load icon "${$}"`);return}const b=`url("data:image/svg+xml;utf8,${Er(S)}")`;return p==="auto"&&(p=S.includes("currentColor")?"mask":"bg"),p==="mask"?{"--un-icon":b,"-webkit-mask":"var(--un-icon) no-repeat",mask:"var(--un-icon) no-repeat","-webkit-mask-size":"100% 100%","mask-size":"100% 100%","background-color":"currentColor",color:"inherit",...f}:{background:`${b} no-repeat`,"background-size":"100% 100%","background-color":"transparent",...f}},{layer:o,prefix:n}]]}}}function Pe(e,t){const r=new Map;function s(n){if(Tr.includes(n))return r.has(n)||r.set(n,e(`${t}@iconify-json/${n}/icons.json`)),r.get(n)}return async(n,i,c)=>{let a=await Me(n,i,c);if(a)return a;const l=await s(n);if(l){const u=[i,i.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),i.replace(/([a-z])(\d+)/g,"$1-$2")];a=await Te(l,n,u,c)}return a}}function Lr(e){return Pe(Ct,e)}const kr=Pr(async e=>{const t=e?.customFetch,r=e?.cdn;return t&&r?Pe(t,r):r?Lr(r):Me});function Ir(e){return e.replace(/-(\w)/g,(t,r)=>r?r.toUpperCase():"")}function me(e){return e.charAt(0).toUpperCase()+e.slice(1)}function ge(e){return e.replace(/(?:^|\B)([A-Z])/g,"-$1").toLowerCase()}var ye=["Webkit","Moz","ms"];function Nr(e){const t={};function r(s){const n=t[s];if(n)return n;let i=Ir(s);if(i!=="filter"&&i in e)return t[s]=ge(i);i=me(i);for(let c=0;c<ye.length;c++){const a=`${ye[c]}${i}`;if(a in e)return t[s]=ge(me(a))}return s}return({entries:s})=>s.forEach(n=>{n[0].startsWith("--")||(n[0]=r(n[0]))})}function Fr(e){return e.replace(/&/g,"&").replace(/>/g,">").replace(/</g,"<")}function zr(e={}){if(typeof window>"u"){console.warn("@unocss/runtime been used in non-browser environment, skipped.");return}const t=window,r=window.document,s=()=>r.documentElement,n=t.__unocss||{},i=Object.assign({},e,n.runtime),c=i.defaults||{},a=i.cloakAttribute??"un-cloak";i.autoPrefix&&(c.postprocess=M(c.postprocess)).unshift(Nr(r.createElement("div").style)),i.configResolved?.(n,c);const l=ir(n,c),u=m=>i.inject?i.inject(m):s().prepend(m),o=()=>i.rootElement?i.rootElement():r.body,h=new Map;let d=!0,g=new Set,$,y,p=[];const v=()=>new Promise(m=>{p.push(m),y!=null&&clearTimeout(y),y=setTimeout(()=>f().then(()=>{const _=p;p=[],_.forEach(E=>E())}),0)});function w(m){if(m.nodeType!==1)return;const _=m;_.hasAttribute(a)&&_.removeAttribute(a),_.querySelectorAll(`[${a}]`).forEach(E=>{E.removeAttribute(a)})}function S(m,_){let E=h.get(m);if(!E)if(E=r.createElement("style"),E.setAttribute("data-unocss-runtime-layer",m),h.set(m,E),_==null)u(E);else{const R=S(_),T=R.parentNode;T?T.insertBefore(E,R.nextSibling):u(E)}return E}async function f(){const m=await l.generate(g);return m.layers.reduce((_,E)=>(S(E,_).innerHTML=m.getLayer(E)??"",E),void 0),g=m.matched,{...m,getStyleElement:_=>h.get(_),getStyleElements:()=>h}}async function b(m){const _=g.size;await l.applyExtractors(m,void 0,g),_!==g.size&&await v()}async function x(m=o()){const _=m&&m.outerHTML;_&&(await b(`${_} ${Fr(_)}`),w(s()),w(m))}const C=new MutationObserver(m=>{d||m.forEach(async _=>{if(_.target.nodeType!==1)return;const E=_.target;for(const R of h)if(E===R[1])return;if(_.type==="childList")_.addedNodes.forEach(async R=>{if(R.nodeType!==1)return;const T=R;$&&!$(T)||(await b(T.outerHTML),w(T))});else{if($&&!$(E))return;if(_.attributeName!==a){const R=Array.from(E.attributes).map(j=>j.value?`${j.name}="${j.value}"`:j.name).join(" "),T=`<${E.tagName.toLowerCase()} ${R}>`;await b(T)}E.hasAttribute(a)&&E.removeAttribute(a)}})});let O=!1;function L(){if(O)return;const m=i.observer?.target?i.observer.target():o();m&&(C.observe(m,{childList:!0,subtree:!0,attributes:!0,attributeFilter:i.observer?.attributeFilter}),O=!0)}function k(){i.bypassDefined&&Dr(l.blocked),x(),L()}function N(){r.readyState==="loading"?t.addEventListener("DOMContentLoaded",k):k()}const z=t.__unocss_runtime=t.__unocss_runtime={version:l.version,uno:l,async extract(m){A(m)||(m.forEach(_=>g.add(_)),m=""),await b(m)},extractAll:x,inspect(m){$=m},toggleObserver(m){m===void 0?d=!d:d=!!m,!O&&!d&&N()},update:f,presets:t.__unocss_runtime?.presets??{}};i.ready?.(z)!==!1&&(d=!1,N())}function Dr(e=new Set){for(let t=0;t<document.styleSheets.length;t++){const r=document.styleSheets[t];let s;try{if(s=r.cssRules||r.rules,!s)continue;Array.from(s).flatMap(n=>n.selectorText?.split(/,/g)||[]).forEach(n=>{n&&(n=n.trim(),n.startsWith(".")&&(n=n.slice(1)),e.add(n))})}catch{continue}}return e}zr({defaults:{presets:[kr({prefix:["i-",""],collections:{},cdn:"https://esm.sh/",scale:1.2,extraProperties:{display:"inline-block","vertical-align":"middle"}})]},bypassDefined:!0});
|
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
const n=Object.freeze({displayName:"YAML",name:"yaml",patterns:[{include:"#comment"},{include:"#property"},{include:"#directive"},{match:"^---",name:"entity.other.document.begin.yaml"},{match:"^\\.{3}",name:"entity.other.document.end.yaml"},{include:"#node"}],repository:{"block-collection":{patterns:[{include:"#block-sequence"},{include:"#block-mapping"}]},"block-mapping":{patterns:[{include:"#block-pair"}]},"block-node":{patterns:[{include:"#prototype"},{include:"#block-scalar"},{include:"#block-collection"},{include:"#flow-scalar-plain-out"},{include:"#flow-node"}]},"block-pair":{patterns:[{begin:"\\?",beginCaptures:{1:{name:"punctuation.definition.key-value.begin.yaml"}},end:"(?=\\?)|^ *(:)|(:)",endCaptures:{1:{name:"punctuation.separator.key-value.mapping.yaml"},2:{name:"invalid.illegal.expected-newline.yaml"}},name:"meta.block-mapping.yaml",patterns:[{include:"#block-node"}]},{begin:`(?x)
|
|
2
|
-
(?=
|
|
3
|
-
(?x:
|
|
4
|
-
[^\\s[-?:,\\[\\]{}#&*!|>'"%@\`]]
|
|
5
|
-
| [?:-] \\S
|
|
6
|
-
)
|
|
7
|
-
(
|
|
8
|
-
[^\\s:]
|
|
9
|
-
| : \\S
|
|
10
|
-
| \\s+ (?![#\\s])
|
|
11
|
-
)*
|
|
12
|
-
\\s*
|
|
13
|
-
:
|
|
14
|
-
(\\s|$)
|
|
15
|
-
)
|
|
16
|
-
`,end:`(?x)
|
|
17
|
-
(?=
|
|
18
|
-
\\s* $
|
|
19
|
-
| \\s+ \\#
|
|
20
|
-
| \\s* : (\\s|$)
|
|
21
|
-
)
|
|
22
|
-
`,patterns:[{include:"#flow-scalar-plain-out-implicit-type"},{begin:`(?x)
|
|
23
|
-
[^\\s[-?:,\\[\\]{}#&*!|>'"%@\`]]
|
|
24
|
-
| [?:-] \\S
|
|
25
|
-
`,beginCaptures:{0:{name:"entity.name.tag.yaml"}},contentName:"entity.name.tag.yaml",end:`(?x)
|
|
26
|
-
(?=
|
|
27
|
-
\\s* $
|
|
28
|
-
| \\s+ \\#
|
|
29
|
-
| \\s* : (\\s|$)
|
|
30
|
-
)
|
|
31
|
-
`,name:"string.unquoted.plain.out.yaml"}]},{match:":(?=\\s|$)",name:"punctuation.separator.key-value.mapping.yaml"}]},"block-scalar":{begin:"(?:(\\|)|(>))([1-9])?([-+])?(.*\\n?)",beginCaptures:{1:{name:"keyword.control.flow.block-scalar.literal.yaml"},2:{name:"keyword.control.flow.block-scalar.folded.yaml"},3:{name:"constant.numeric.indentation-indicator.yaml"},4:{name:"storage.modifier.chomping-indicator.yaml"},5:{patterns:[{include:"#comment"},{match:".+",name:"invalid.illegal.expected-comment-or-newline.yaml"}]}},end:"^(?=\\S)|(?!\\G)",patterns:[{begin:"^([ ]+)(?! )",end:"^(?!\\1|\\s*$)",name:"string.unquoted.block.yaml"}]},"block-sequence":{match:"(-)(?!\\S)",name:"punctuation.definition.block.sequence.item.yaml"},comment:{begin:"(?:(^[ \\t]*)|[ \\t]+)(?=#\\p{Print}*$)",beginCaptures:{1:{name:"punctuation.whitespace.comment.leading.yaml"}},end:"(?!\\G)",patterns:[{begin:"#",beginCaptures:{0:{name:"punctuation.definition.comment.yaml"}},end:"\\n",name:"comment.line.number-sign.yaml"}]},directive:{begin:"^%",beginCaptures:{0:{name:"punctuation.definition.directive.begin.yaml"}},end:"(?=$|[ \\t]+($|#))",name:"meta.directive.yaml",patterns:[{captures:{1:{name:"keyword.other.directive.yaml.yaml"},2:{name:"constant.numeric.yaml-version.yaml"}},match:"\\G(YAML)[ \\t]+(\\d+\\.\\d+)"},{captures:{1:{name:"keyword.other.directive.tag.yaml"},2:{name:"storage.type.tag-handle.yaml"},3:{name:"support.type.tag-prefix.yaml"}},match:`(?x)
|
|
32
|
-
\\G
|
|
33
|
-
(TAG)
|
|
34
|
-
(?:[ \\t]+
|
|
35
|
-
((?:!(?:[0-9A-Za-z\\-]*!)?))
|
|
36
|
-
(?:[ \\t]+ (
|
|
37
|
-
! (?x: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )*
|
|
38
|
-
| (?![,!\\[\\]{}]) (?x: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )+
|
|
39
|
-
)
|
|
40
|
-
)?
|
|
41
|
-
)?
|
|
42
|
-
`},{captures:{1:{name:"support.other.directive.reserved.yaml"},2:{name:"string.unquoted.directive-name.yaml"},3:{name:"string.unquoted.directive-parameter.yaml"}},match:"(?x) \\G (\\w+) (?:[ \\t]+ (\\w+) (?:[ \\t]+ (\\w+))? )?"},{match:"\\S+",name:"invalid.illegal.unrecognized.yaml"}]},"flow-alias":{captures:{1:{name:"keyword.control.flow.alias.yaml"},2:{name:"punctuation.definition.alias.yaml"},3:{name:"variable.other.alias.yaml"},4:{name:"invalid.illegal.character.anchor.yaml"}},match:"((\\*))([^\\s\\[\\]/{/},]+)([^\\s\\]},]\\S*)?"},"flow-collection":{patterns:[{include:"#flow-sequence"},{include:"#flow-mapping"}]},"flow-mapping":{begin:"\\{",beginCaptures:{0:{name:"punctuation.definition.mapping.begin.yaml"}},end:"\\}",endCaptures:{0:{name:"punctuation.definition.mapping.end.yaml"}},name:"meta.flow-mapping.yaml",patterns:[{include:"#prototype"},{match:",",name:"punctuation.separator.mapping.yaml"},{include:"#flow-pair"}]},"flow-node":{patterns:[{include:"#prototype"},{include:"#flow-alias"},{include:"#flow-collection"},{include:"#flow-scalar"}]},"flow-pair":{patterns:[{begin:"\\?",beginCaptures:{0:{name:"punctuation.definition.key-value.begin.yaml"}},end:"(?=[},\\]])",name:"meta.flow-pair.explicit.yaml",patterns:[{include:"#prototype"},{include:"#flow-pair"},{include:"#flow-node"},{begin:":(?=\\s|$|[\\[\\]{},])",beginCaptures:{0:{name:"punctuation.separator.key-value.mapping.yaml"}},end:"(?=[},\\]])",patterns:[{include:"#flow-value"}]}]},{begin:`(?x)
|
|
43
|
-
(?=
|
|
44
|
-
(?:
|
|
45
|
-
[^\\s[-?:,\\[\\]{}#&*!|>'"%@\`]]
|
|
46
|
-
| [?:-] [^\\s[\\[\\]{},]]
|
|
47
|
-
)
|
|
48
|
-
(
|
|
49
|
-
[^\\s:[\\[\\]{},]]
|
|
50
|
-
| : [^\\s[\\[\\]{},]]
|
|
51
|
-
| \\s+ (?![#\\s])
|
|
52
|
-
)*
|
|
53
|
-
\\s*
|
|
54
|
-
:
|
|
55
|
-
(\\s|$)
|
|
56
|
-
)
|
|
57
|
-
`,end:`(?x)
|
|
58
|
-
(?=
|
|
59
|
-
\\s* $
|
|
60
|
-
| \\s+ \\#
|
|
61
|
-
| \\s* : (\\s|$)
|
|
62
|
-
| \\s* : [\\[\\]{},]
|
|
63
|
-
| \\s* [\\[\\]{},]
|
|
64
|
-
)
|
|
65
|
-
`,name:"meta.flow-pair.key.yaml",patterns:[{include:"#flow-scalar-plain-in-implicit-type"},{begin:`(?x)
|
|
66
|
-
[^\\s[-?:,\\[\\]{}#&*!|>'"%@\`]]
|
|
67
|
-
| [?:-] [^\\s[\\[\\]{},]]
|
|
68
|
-
`,beginCaptures:{0:{name:"entity.name.tag.yaml"}},contentName:"entity.name.tag.yaml",end:`(?x)
|
|
69
|
-
(?=
|
|
70
|
-
\\s* $
|
|
71
|
-
| \\s+ \\#
|
|
72
|
-
| \\s* : (\\s|$)
|
|
73
|
-
| \\s* : [\\[\\]{},]
|
|
74
|
-
| \\s* [\\[\\]{},]
|
|
75
|
-
)
|
|
76
|
-
`,name:"string.unquoted.plain.in.yaml"}]},{include:"#flow-node"},{begin:":(?=\\s|$|[\\[\\]{},])",captures:{0:{name:"punctuation.separator.key-value.mapping.yaml"}},end:"(?=[},\\]])",name:"meta.flow-pair.yaml",patterns:[{include:"#flow-value"}]}]},"flow-scalar":{patterns:[{include:"#flow-scalar-double-quoted"},{include:"#flow-scalar-single-quoted"},{include:"#flow-scalar-plain-in"}]},"flow-scalar-double-quoted":{begin:'"',beginCaptures:{0:{name:"punctuation.definition.string.begin.yaml"}},end:'"',endCaptures:{0:{name:"punctuation.definition.string.end.yaml"}},name:"string.quoted.double.yaml",patterns:[{match:'\\\\([0abtnvfre "/\\\\N_Lp]|x\\d\\d|u\\d{4}|U\\d{8})',name:"constant.character.escape.yaml"},{match:"\\\\\\n",name:"constant.character.escape.double-quoted.newline.yaml"}]},"flow-scalar-plain-in":{patterns:[{include:"#flow-scalar-plain-in-implicit-type"},{begin:`(?x)
|
|
77
|
-
[^\\s[-?:,\\[\\]{}#&*!|>'"%@\`]]
|
|
78
|
-
| [?:-] [^\\s[\\[\\]{},]]
|
|
79
|
-
`,end:`(?x)
|
|
80
|
-
(?=
|
|
81
|
-
\\s* $
|
|
82
|
-
| \\s+ \\#
|
|
83
|
-
| \\s* : (\\s|$)
|
|
84
|
-
| \\s* : [\\[\\]{},]
|
|
85
|
-
| \\s* [\\[\\]{},]
|
|
86
|
-
)
|
|
87
|
-
`,name:"string.unquoted.plain.in.yaml"}]},"flow-scalar-plain-in-implicit-type":{patterns:[{captures:{1:{name:"constant.language.null.yaml"},2:{name:"constant.language.boolean.yaml"},3:{name:"constant.numeric.integer.yaml"},4:{name:"constant.numeric.float.yaml"},5:{name:"constant.other.timestamp.yaml"},6:{name:"constant.language.value.yaml"},7:{name:"constant.language.merge.yaml"}},match:`(?x)
|
|
88
|
-
(?x:
|
|
89
|
-
(null|Null|NULL|~)
|
|
90
|
-
| (y|Y|yes|Yes|YES|n|N|no|No|NO|true|True|TRUE|false|False|FALSE|on|On|ON|off|Off|OFF)
|
|
91
|
-
| (
|
|
92
|
-
(?:
|
|
93
|
-
[-+]? 0b [0-1_]+ # (base 2)
|
|
94
|
-
| [-+]? 0 [0-7_]+ # (base 8)
|
|
95
|
-
| [-+]? (?: 0|[1-9][0-9_]*) # (base 10)
|
|
96
|
-
| [-+]? 0x [0-9a-fA-F_]+ # (base 16)
|
|
97
|
-
| [-+]? [1-9] [0-9_]* (?: :[0-5]?[0-9])+ # (base 60)
|
|
98
|
-
)
|
|
99
|
-
)
|
|
100
|
-
| (
|
|
101
|
-
(?x:
|
|
102
|
-
[-+]? (?: [0-9] [0-9_]*)? \\. [0-9.]* (?: [eE] [-+] [0-9]+)? # (base 10)
|
|
103
|
-
| [-+]? [0-9] [0-9_]* (?: :[0-5]?[0-9])+ \\. [0-9_]* # (base 60)
|
|
104
|
-
| [-+]? \\. (?: inf|Inf|INF) # (infinity)
|
|
105
|
-
| \\. (?: nan|NaN|NAN) # (not a number)
|
|
106
|
-
)
|
|
107
|
-
)
|
|
108
|
-
| (
|
|
109
|
-
(?x:
|
|
110
|
-
\\d{4} - \\d{2} - \\d{2} # (y-m-d)
|
|
111
|
-
| \\d{4} # (year)
|
|
112
|
-
- \\d{1,2} # (month)
|
|
113
|
-
- \\d{1,2} # (day)
|
|
114
|
-
(?: [Tt] | [ \\t]+) \\d{1,2} # (hour)
|
|
115
|
-
: \\d{2} # (minute)
|
|
116
|
-
: \\d{2} # (second)
|
|
117
|
-
(?: \\.\\d*)? # (fraction)
|
|
118
|
-
(?:
|
|
119
|
-
(?:[ \\t]*) Z
|
|
120
|
-
| [-+] \\d{1,2} (?: :\\d{1,2})?
|
|
121
|
-
)? # (time zone)
|
|
122
|
-
)
|
|
123
|
-
)
|
|
124
|
-
| (=)
|
|
125
|
-
| (<<)
|
|
126
|
-
)
|
|
127
|
-
(?:
|
|
128
|
-
(?=
|
|
129
|
-
\\s* $
|
|
130
|
-
| \\s+ \\#
|
|
131
|
-
| \\s* : (\\s|$)
|
|
132
|
-
| \\s* : [\\[\\]{},]
|
|
133
|
-
| \\s* [\\[\\]{},]
|
|
134
|
-
)
|
|
135
|
-
)
|
|
136
|
-
`}]},"flow-scalar-plain-out":{patterns:[{include:"#flow-scalar-plain-out-implicit-type"},{begin:`(?x)
|
|
137
|
-
[^\\s[-?:,\\[\\]{}#&*!|>'"%@\`]]
|
|
138
|
-
| [?:-] \\S
|
|
139
|
-
`,end:`(?x)
|
|
140
|
-
(?=
|
|
141
|
-
\\s* $
|
|
142
|
-
| \\s+ \\#
|
|
143
|
-
| \\s* : (\\s|$)
|
|
144
|
-
)
|
|
145
|
-
`,name:"string.unquoted.plain.out.yaml"}]},"flow-scalar-plain-out-implicit-type":{patterns:[{captures:{1:{name:"constant.language.null.yaml"},2:{name:"constant.language.boolean.yaml"},3:{name:"constant.numeric.integer.yaml"},4:{name:"constant.numeric.float.yaml"},5:{name:"constant.other.timestamp.yaml"},6:{name:"constant.language.value.yaml"},7:{name:"constant.language.merge.yaml"}},match:`(?x)
|
|
146
|
-
(?x:
|
|
147
|
-
(null|Null|NULL|~)
|
|
148
|
-
| (y|Y|yes|Yes|YES|n|N|no|No|NO|true|True|TRUE|false|False|FALSE|on|On|ON|off|Off|OFF)
|
|
149
|
-
| (
|
|
150
|
-
(?:
|
|
151
|
-
[-+]? 0b [0-1_]+ # (base 2)
|
|
152
|
-
| [-+]? 0 [0-7_]+ # (base 8)
|
|
153
|
-
| [-+]? (?: 0|[1-9][0-9_]*) # (base 10)
|
|
154
|
-
| [-+]? 0x [0-9a-fA-F_]+ # (base 16)
|
|
155
|
-
| [-+]? [1-9] [0-9_]* (?: :[0-5]?[0-9])+ # (base 60)
|
|
156
|
-
)
|
|
157
|
-
)
|
|
158
|
-
| (
|
|
159
|
-
(?x:
|
|
160
|
-
[-+]? (?: [0-9] [0-9_]*)? \\. [0-9.]* (?: [eE] [-+] [0-9]+)? # (base 10)
|
|
161
|
-
| [-+]? [0-9] [0-9_]* (?: :[0-5]?[0-9])+ \\. [0-9_]* # (base 60)
|
|
162
|
-
| [-+]? \\. (?: inf|Inf|INF) # (infinity)
|
|
163
|
-
| \\. (?: nan|NaN|NAN) # (not a number)
|
|
164
|
-
)
|
|
165
|
-
)
|
|
166
|
-
| (
|
|
167
|
-
(?x:
|
|
168
|
-
\\d{4} - \\d{2} - \\d{2} # (y-m-d)
|
|
169
|
-
| \\d{4} # (year)
|
|
170
|
-
- \\d{1,2} # (month)
|
|
171
|
-
- \\d{1,2} # (day)
|
|
172
|
-
(?: [Tt] | [ \\t]+) \\d{1,2} # (hour)
|
|
173
|
-
: \\d{2} # (minute)
|
|
174
|
-
: \\d{2} # (second)
|
|
175
|
-
(?: \\.\\d*)? # (fraction)
|
|
176
|
-
(?:
|
|
177
|
-
(?:[ \\t]*) Z
|
|
178
|
-
| [-+] \\d{1,2} (?: :\\d{1,2})?
|
|
179
|
-
)? # (time zone)
|
|
180
|
-
)
|
|
181
|
-
)
|
|
182
|
-
| (=)
|
|
183
|
-
| (<<)
|
|
184
|
-
)
|
|
185
|
-
(?x:
|
|
186
|
-
(?=
|
|
187
|
-
\\s* $
|
|
188
|
-
| \\s+ \\#
|
|
189
|
-
| \\s* : (\\s|$)
|
|
190
|
-
)
|
|
191
|
-
)
|
|
192
|
-
`}]},"flow-scalar-single-quoted":{begin:"'",beginCaptures:{0:{name:"punctuation.definition.string.begin.yaml"}},end:"'(?!')",endCaptures:{0:{name:"punctuation.definition.string.end.yaml"}},name:"string.quoted.single.yaml",patterns:[{match:"''",name:"constant.character.escape.single-quoted.yaml"}]},"flow-sequence":{begin:"\\[",beginCaptures:{0:{name:"punctuation.definition.sequence.begin.yaml"}},end:"\\]",endCaptures:{0:{name:"punctuation.definition.sequence.end.yaml"}},name:"meta.flow-sequence.yaml",patterns:[{include:"#prototype"},{match:",",name:"punctuation.separator.sequence.yaml"},{include:"#flow-pair"},{include:"#flow-node"}]},"flow-value":{patterns:[{begin:"\\G(?![},\\]])",end:"(?=[},\\]])",name:"meta.flow-pair.value.yaml",patterns:[{include:"#flow-node"}]}]},node:{patterns:[{include:"#block-node"}]},property:{begin:"(?=!|&)",end:"(?!\\G)",name:"meta.property.yaml",patterns:[{captures:{1:{name:"keyword.control.property.anchor.yaml"},2:{name:"punctuation.definition.anchor.yaml"},3:{name:"entity.name.type.anchor.yaml"},4:{name:"invalid.illegal.character.anchor.yaml"}},match:"\\G((&))([^\\s\\[\\]/{/},]+)(\\S+)?"},{match:`(?x)
|
|
193
|
-
\\G
|
|
194
|
-
(?:
|
|
195
|
-
! < (?: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;/?:@&=+$,_.!~*'()\\[\\]] )+ >
|
|
196
|
-
| (?:!(?:[0-9A-Za-z\\-]*!)?) (?: %[0-9A-Fa-f]{2} | [0-9A-Za-z\\-#;/?:@&=+$_.~*'()] )+
|
|
197
|
-
| !
|
|
198
|
-
)
|
|
199
|
-
(?=\\ |\\t|$)
|
|
200
|
-
`,name:"storage.type.tag-handle.yaml"},{match:"\\S+",name:"invalid.illegal.tag-handle.yaml"}]},prototype:{patterns:[{include:"#comment"},{include:"#property"}]}},scopeName:"source.yaml",aliases:["yml"]});var e=[n];export{e as default};
|
package/client/html-r4dic7N6.js
DELETED
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
import t from "./javascript-iu2g-HpL.js";
|
|
2
|
-
import e from "./css-hXHVOlj5.js";
|
|
3
|
-
const n = Object.freeze({ displayName: "HTML", injections: { "R:text.html - (comment.block, text.html meta.embedded, meta.tag.*.*.html, meta.tag.*.*.*.html, meta.tag.*.*.*.*.html)": { comment: "Uses R: to ensure this matches after any other injections.", patterns: [{ match: "<", name: "invalid.illegal.bad-angle-bracket.html" }] } }, name: "html", patterns: [{ include: "#xml-processing" }, { include: "#comment" }, { include: "#doctype" }, { include: "#cdata" }, { include: "#tags-valid" }, { include: "#tags-invalid" }, { include: "#entities" }], repository: { attribute: { patterns: [{ begin: "(s(hape|cope|t(ep|art)|ize(s)?|p(ellcheck|an)|elected|lot|andbox|rc(set|doc|lang)?)|h(ttp-equiv|i(dden|gh)|e(ight|aders)|ref(lang)?)|n(o(nce|validate|module)|ame)|c(h(ecked|arset)|ite|o(nt(ent(editable)?|rols)|ords|l(s(pan)?|or))|lass|rossorigin)|t(ype(mustmatch)?|itle|a(rget|bindex)|ranslate)|i(s(map)?|n(tegrity|putmode)|tem(scope|type|id|prop|ref)|d)|op(timum|en)|d(i(sabled|r(name)?)|ownload|e(coding|f(er|ault))|at(etime|a)|raggable)|usemap|p(ing|oster|la(ysinline|ceholder)|attern|reload)|enctype|value|kind|for(m(novalidate|target|enctype|action|method)?)?|w(idth|rap)|l(ist|o(op|w)|a(ng|bel))|a(s(ync)?|c(ce(sskey|pt(-charset)?)|tion)|uto(c(omplete|apitalize)|play|focus)|l(t|low(usermedia|paymentrequest|fullscreen))|bbr)|r(ows(pan)?|e(versed|quired|ferrerpolicy|l|adonly))|m(in(length)?|u(ted|ltiple)|e(thod|dia)|a(nifest|x(length)?)))(?![\\w:-])", beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, comment: "HTML5 attributes, not event handlers", end: "(?=\\s*+[^=\\s])", name: "meta.attribute.$1.html", patterns: [{ include: "#attribute-interior" }] }, { begin: "style(?![\\w:-])", beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, comment: "HTML5 style attribute", end: "(?=\\s*+[^=\\s])", name: "meta.attribute.style.html", patterns: [{ begin: "=", beginCaptures: { 0: { name: "punctuation.separator.key-value.html" } }, end: "(?<=[^\\s=])(?!\\s*=)|(?=/?>)", patterns: [{ begin: "(?=[^\\s=<>`/]|/(?!>))", end: "(?!\\G)", name: "meta.embedded.line.css", patterns: [{ captures: { 0: { name: "source.css" } }, match: "([^\\s\"'=<>`/]|/(?!>))+", name: "string.unquoted.html" }, { begin: '"', beginCaptures: { 0: { name: "punctuation.definition.string.begin.html" } }, contentName: "source.css", end: '(")', endCaptures: { 0: { name: "punctuation.definition.string.end.html" }, 1: { name: "source.css" } }, name: "string.quoted.double.html", patterns: [{ include: "#entities" }] }, { begin: "'", beginCaptures: { 0: { name: "punctuation.definition.string.begin.html" } }, contentName: "source.css", end: "(')", endCaptures: { 0: { name: "punctuation.definition.string.end.html" }, 1: { name: "source.css" } }, name: "string.quoted.single.html", patterns: [{ include: "#entities" }] }] }, { match: "=", name: "invalid.illegal.unexpected-equals-sign.html" }] }] }, { begin: "on(s(croll|t(orage|alled)|u(spend|bmit)|e(curitypolicyviolation|ek(ing|ed)|lect))|hashchange|c(hange|o(ntextmenu|py)|u(t|echange)|l(ick|ose)|an(cel|play(through)?))|t(imeupdate|oggle)|in(put|valid)|o(nline|ffline)|d(urationchange|r(op|ag(start|over|e(n(ter|d)|xit)|leave)?)|blclick)|un(handledrejection|load)|p(opstate|lay(ing)?|a(ste|use|ge(show|hide))|rogress)|e(nded|rror|mptied)|volumechange|key(down|up|press)|focus|w(heel|aiting)|l(oad(start|e(nd|d(data|metadata)))?|anguagechange)|a(uxclick|fterprint|bort)|r(e(s(ize|et)|jectionhandled)|atechange)|m(ouse(o(ut|ver)|down|up|enter|leave|move)|essage(error)?)|b(efore(unload|print)|lur))(?![\\w:-])", beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, comment: "HTML5 attributes, event handlers", end: "(?=\\s*+[^=\\s])", name: "meta.attribute.event-handler.$1.html", patterns: [{ begin: "=", beginCaptures: { 0: { name: "punctuation.separator.key-value.html" } }, end: "(?<=[^\\s=])(?!\\s*=)|(?=/?>)", patterns: [{ begin: "(?=[^\\s=<>`/]|/(?!>))", end: "(?!\\G)", name: "meta.embedded.line.js", patterns: [{ captures: { 0: { name: "source.js" }, 1: { patterns: [{ include: "source.js" }] } }, match: "(([^\\s\"'=<>`/]|/(?!>))+)", name: "string.unquoted.html" }, { begin: '"', beginCaptures: { 0: { name: "punctuation.definition.string.begin.html" } }, contentName: "source.js", end: '(")', endCaptures: { 0: { name: "punctuation.definition.string.end.html" }, 1: { name: "source.js" } }, name: "string.quoted.double.html", patterns: [{ captures: { 0: { patterns: [{ include: "source.js" }] } }, match: '([^\\n"/]|/(?![/*]))+' }, { begin: "//", beginCaptures: { 0: { name: "punctuation.definition.comment.js" } }, end: '(?=")|\\n', name: "comment.line.double-slash.js" }, { begin: "/\\*", beginCaptures: { 0: { name: "punctuation.definition.comment.begin.js" } }, end: '(?=")|\\*/', endCaptures: { 0: { name: "punctuation.definition.comment.end.js" } }, name: "comment.block.js" }] }, { begin: "'", beginCaptures: { 0: { name: "punctuation.definition.string.begin.html" } }, contentName: "source.js", end: "(')", endCaptures: { 0: { name: "punctuation.definition.string.end.html" }, 1: { name: "source.js" } }, name: "string.quoted.single.html", patterns: [{ captures: { 0: { patterns: [{ include: "source.js" }] } }, match: "([^\\n'/]|/(?![/*]))+" }, { begin: "//", beginCaptures: { 0: { name: "punctuation.definition.comment.js" } }, end: "(?=')|\\n", name: "comment.line.double-slash.js" }, { begin: "/\\*", beginCaptures: { 0: { name: "punctuation.definition.comment.begin.js" } }, end: "(?=')|\\*/", endCaptures: { 0: { name: "punctuation.definition.comment.end.js" } }, name: "comment.block.js" }] }] }, { match: "=", name: "invalid.illegal.unexpected-equals-sign.html" }] }] }, { begin: "(data-[a-z\\-]+)(?![\\w:-])", beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, comment: "HTML5 attributes, data-*", end: "(?=\\s*+[^=\\s])", name: "meta.attribute.data-x.$1.html", patterns: [{ include: "#attribute-interior" }] }, { begin: "(align|bgcolor|border)(?![\\w:-])", beginCaptures: { 0: { name: "invalid.deprecated.entity.other.attribute-name.html" } }, comment: "HTML attributes, deprecated", end: "(?=\\s*+[^=\\s])", name: "meta.attribute.$1.html", patterns: [{ include: "#attribute-interior" }] }, { begin: `([^\\x{0020}"'<>/=\\x{0000}-\\x{001F}\\x{007F}-\\x{009F}\\x{FDD0}-\\x{FDEF}\\x{FFFE}\\x{FFFF}\\x{1FFFE}\\x{1FFFF}\\x{2FFFE}\\x{2FFFF}\\x{3FFFE}\\x{3FFFF}\\x{4FFFE}\\x{4FFFF}\\x{5FFFE}\\x{5FFFF}\\x{6FFFE}\\x{6FFFF}\\x{7FFFE}\\x{7FFFF}\\x{8FFFE}\\x{8FFFF}\\x{9FFFE}\\x{9FFFF}\\x{AFFFE}\\x{AFFFF}\\x{BFFFE}\\x{BFFFF}\\x{CFFFE}\\x{CFFFF}\\x{DFFFE}\\x{DFFFF}\\x{EFFFE}\\x{EFFFF}\\x{FFFFE}\\x{FFFFF}\\x{10FFFE}\\x{10FFFF}]+)`, beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, comment: "Anything else that is valid", end: "(?=\\s*+[^=\\s])", name: "meta.attribute.unrecognized.$1.html", patterns: [{ include: "#attribute-interior" }] }, { match: "[^\\s>]+", name: "invalid.illegal.character-not-allowed-here.html" }] }, "attribute-interior": { patterns: [{ begin: "=", beginCaptures: { 0: { name: "punctuation.separator.key-value.html" } }, end: "(?<=[^\\s=])(?!\\s*=)|(?=/?>)", patterns: [{ match: "([^\\s\"'=<>`/]|/(?!>))+", name: "string.unquoted.html" }, { begin: '"', beginCaptures: { 0: { name: "punctuation.definition.string.begin.html" } }, end: '"', endCaptures: { 0: { name: "punctuation.definition.string.end.html" } }, name: "string.quoted.double.html", patterns: [{ include: "#entities" }] }, { begin: "'", beginCaptures: { 0: { name: "punctuation.definition.string.begin.html" } }, end: "'", endCaptures: { 0: { name: "punctuation.definition.string.end.html" } }, name: "string.quoted.single.html", patterns: [{ include: "#entities" }] }, { match: "=", name: "invalid.illegal.unexpected-equals-sign.html" }] }] }, cdata: { begin: "<!\\[CDATA\\[", beginCaptures: { 0: { name: "punctuation.definition.tag.begin.html" } }, contentName: "string.other.inline-data.html", end: "]]>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.cdata.html" }, comment: { begin: "<!--", captures: { 0: { name: "punctuation.definition.comment.html" } }, end: "-->", name: "comment.block.html", patterns: [{ match: "\\G-?>", name: "invalid.illegal.characters-not-allowed-here.html" }, { match: "<!--(?!>)|<!-(?=-->)", name: "invalid.illegal.characters-not-allowed-here.html" }, { match: "--!>", name: "invalid.illegal.characters-not-allowed-here.html" }] }, "core-minus-invalid": { comment: "This should be the root pattern array includes minus #tags-invalid", patterns: [{ include: "#xml-processing" }, { include: "#comment" }, { include: "#doctype" }, { include: "#cdata" }, { include: "#tags-valid" }, { include: "#entities" }] }, doctype: { begin: "<!(?=(?i:DOCTYPE\\s))", beginCaptures: { 0: { name: "punctuation.definition.tag.begin.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.doctype.html", patterns: [{ match: "\\G(?i:DOCTYPE)", name: "entity.name.tag.html" }, { begin: '"', end: '"', name: "string.quoted.double.html" }, { match: "[^\\s>]+", name: "entity.other.attribute-name.html" }] }, entities: { patterns: [{ captures: { 1: { name: "punctuation.definition.entity.html" }, 912: { name: "punctuation.definition.entity.html" } }, comment: "Yes this is a bit ridiculous, there are quite a lot of these", match: `(?x)
|
|
4
|
-
(&) (?=[a-zA-Z])
|
|
5
|
-
(
|
|
6
|
-
(a(s(ymp(eq)?|cr|t)|n(d(slope|d|v|and)?|g(s(t|ph)|zarr|e|le|rt(vb(d)?)?|msd(a(h|c|d|e|f|a|g|b))?)?)|c(y|irc|d|ute|E)?|tilde|o(pf|gon)|uml|p(id|os|prox(eq)?|e|E|acir)?|elig|f(r)?|w(conint|int)|l(pha|e(ph|fsym))|acute|ring|grave|m(p|a(cr|lg))|breve)|A(s(sign|cr)|nd|MP|c(y|irc)|tilde|o(pf|gon)|uml|pplyFunction|fr|Elig|lpha|acute|ring|grave|macr|breve))
|
|
7
|
-
| (B(scr|cy|opf|umpeq|e(cause|ta|rnoullis)|fr|a(ckslash|r(v|wed))|reve)|b(s(cr|im(e)?|ol(hsub|b)?|emi)|n(ot|e(quiv)?)|c(y|ong)|ig(s(tar|qcup)|c(irc|up|ap)|triangle(down|up)|o(times|dot|plus)|uplus|vee|wedge)|o(t(tom)?|pf|wtie|x(h(d|u|D|U)?|times|H(d|u|D|U)?|d(R|l|r|L)|u(R|l|r|L)|plus|D(R|l|r|L)|v(R|h|H|l|r|L)?|U(R|l|r|L)|V(R|h|H|l|r|L)?|minus|box))|Not|dquo|u(ll(et)?|mp(e(q)?|E)?)|prime|e(caus(e)?|t(h|ween|a)|psi|rnou|mptyv)|karow|fr|l(ock|k(1(2|4)|34)|a(nk|ck(square|triangle(down|left|right)?|lozenge)))|a(ck(sim(eq)?|cong|prime|epsilon)|r(vee|wed(ge)?))|r(eve|vbar)|brk(tbrk)?))
|
|
8
|
-
| (c(s(cr|u(p(e)?|b(e)?))|h(cy|i|eck(mark)?)|ylcty|c(irc|ups(sm)?|edil|a(ps|ron))|tdot|ir(scir|c(eq|le(d(R|circ|S|dash|ast)|arrow(left|right)))?|e|fnint|E|mid)?|o(n(int|g(dot)?)|p(y(sr)?|f|rod)|lon(e(q)?)?|m(p(fn|le(xes|ment))?|ma(t)?))|dot|u(darr(l|r)|p(s|c(up|ap)|or|dot|brcap)?|e(sc|pr)|vee|wed|larr(p)?|r(vearrow(left|right)|ly(eq(succ|prec)|vee|wedge)|arr(m)?|ren))|e(nt(erdot)?|dil|mptyv)|fr|w(conint|int)|lubs(uit)?|a(cute|p(s|c(up|ap)|dot|and|brcup)?|r(on|et))|r(oss|arr))|C(scr|hi|c(irc|onint|edil|aron)|ircle(Minus|Times|Dot|Plus)|Hcy|o(n(tourIntegral|int|gruent)|unterClockwiseContourIntegral|p(f|roduct)|lon(e)?)|dot|up(Cap)?|OPY|e(nterDot|dilla)|fr|lo(seCurly(DoubleQuote|Quote)|ckwiseContourIntegral)|a(yleys|cute|p(italDifferentialD)?)|ross))
|
|
9
|
-
| (d(s(c(y|r)|trok|ol)|har(l|r)|c(y|aron)|t(dot|ri(f)?)|i(sin|e|v(ide(ontimes)?|onx)?|am(s|ond(suit)?)?|gamma)|Har|z(cy|igrarr)|o(t(square|plus|eq(dot)?|minus)?|ublebarwedge|pf|wn(harpoon(left|right)|downarrows|arrow)|llar)|d(otseq|a(rr|gger))?|u(har|arr)|jcy|e(lta|g|mptyv)|f(isht|r)|wangle|lc(orn|rop)|a(sh(v)?|leth|rr|gger)|r(c(orn|rop)|bkarow)|b(karow|lac)|Arr)|D(s(cr|trok)|c(y|aron)|Scy|i(fferentialD|a(critical(Grave|Tilde|Do(t|ubleAcute)|Acute)|mond))|o(t(Dot|Equal)?|uble(Right(Tee|Arrow)|ContourIntegral|Do(t|wnArrow)|Up(DownArrow|Arrow)|VerticalBar|L(ong(RightArrow|Left(RightArrow|Arrow))|eft(RightArrow|Tee|Arrow)))|pf|wn(Right(TeeVector|Vector(Bar)?)|Breve|Tee(Arrow)?|arrow|Left(RightVector|TeeVector|Vector(Bar)?)|Arrow(Bar|UpArrow)?))|Zcy|el(ta)?|D(otrahd)?|Jcy|fr|a(shv|rr|gger)))
|
|
10
|
-
| (e(s(cr|im|dot)|n(sp|g)|c(y|ir(c)?|olon|aron)|t(h|a)|o(pf|gon)|dot|u(ro|ml)|p(si(v|lon)?|lus|ar(sl)?)|e|D(ot|Dot)|q(s(im|lant(less|gtr))|c(irc|olon)|u(iv(DD)?|est|als)|vparsl)|f(Dot|r)|l(s(dot)?|inters|l)?|a(ster|cute)|r(Dot|arr)|g(s(dot)?|rave)?|x(cl|ist|p(onentiale|ectation))|m(sp(1(3|4))?|pty(set|v)?|acr))|E(s(cr|im)|c(y|irc|aron)|ta|o(pf|gon)|NG|dot|uml|TH|psilon|qu(ilibrium|al(Tilde)?)|fr|lement|acute|grave|x(ists|ponentialE)|m(pty(SmallSquare|VerySmallSquare)|acr)))
|
|
11
|
-
| (f(scr|nof|cy|ilig|o(pf|r(k(v)?|all))|jlig|partint|emale|f(ilig|l(ig|lig)|r)|l(tns|lig|at)|allingdotseq|r(own|a(sl|c(1(2|8|3|4|5|6)|78|2(3|5)|3(8|4|5)|45|5(8|6)))))|F(scr|cy|illed(SmallSquare|VerySmallSquare)|o(uriertrf|pf|rAll)|fr))
|
|
12
|
-
| (G(scr|c(y|irc|edil)|t|opf|dot|T|Jcy|fr|amma(d)?|reater(Greater|SlantEqual|Tilde|Equal(Less)?|FullEqual|Less)|g|breve)|g(s(cr|im(e|l)?)|n(sim|e(q(q)?)?|E|ap(prox)?)|c(y|irc)|t(c(c|ir)|dot|quest|lPar|r(sim|dot|eq(qless|less)|less|a(pprox|rr)))?|imel|opf|dot|jcy|e(s(cc|dot(o(l)?)?|l(es)?)?|q(slant|q)?|l)?|v(nE|ertneqq)|fr|E(l)?|l(j|E|a)?|a(cute|p|mma(d)?)|rave|g(g)?|breve))
|
|
13
|
-
| (h(s(cr|trok|lash)|y(phen|bull)|circ|o(ok(leftarrow|rightarrow)|pf|arr|rbar|mtht)|e(llip|arts(uit)?|rcon)|ks(earow|warow)|fr|a(irsp|lf|r(dcy|r(cir|w)?)|milt)|bar|Arr)|H(s(cr|trok)|circ|ilbertSpace|o(pf|rizontalLine)|ump(DownHump|Equal)|fr|a(cek|t)|ARDcy))
|
|
14
|
-
| (i(s(cr|in(s(v)?|dot|v|E)?)|n(care|t(cal|prod|e(rcal|gers)|larhk)?|odot|fin(tie)?)?|c(y|irc)?|t(ilde)?|i(nfin|i(nt|int)|ota)?|o(cy|ta|pf|gon)|u(kcy|ml)|jlig|prod|e(cy|xcl)|quest|f(f|r)|acute|grave|m(of|ped|a(cr|th|g(part|e|line))))|I(scr|n(t(e(rsection|gral))?|visible(Comma|Times))|c(y|irc)|tilde|o(ta|pf|gon)|dot|u(kcy|ml)|Ocy|Jlig|fr|Ecy|acute|grave|m(plies|a(cr|ginaryI))?))
|
|
15
|
-
| (j(s(cr|ercy)|c(y|irc)|opf|ukcy|fr|math)|J(s(cr|ercy)|c(y|irc)|opf|ukcy|fr))
|
|
16
|
-
| (k(scr|hcy|c(y|edil)|opf|jcy|fr|appa(v)?|green)|K(scr|c(y|edil)|Hcy|opf|Jcy|fr|appa))
|
|
17
|
-
| (l(s(h|cr|trok|im(e|g)?|q(uo(r)?|b)|aquo)|h(ar(d|u(l)?)|blk)|n(sim|e(q(q)?)?|E|ap(prox)?)|c(y|ub|e(il|dil)|aron)|Barr|t(hree|c(c|ir)|imes|dot|quest|larr|r(i(e|f)?|Par))?|Har|o(ng(left(arrow|rightarrow)|rightarrow|mapsto)|times|z(enge|f)?|oparrow(left|right)|p(f|lus|ar)|w(ast|bar)|a(ng|rr)|brk)|d(sh|ca|quo(r)?|r(dhar|ushar))|ur(dshar|uhar)|jcy|par(lt)?|e(s(s(sim|dot|eq(qgtr|gtr)|approx|gtr)|cc|dot(o(r)?)?|g(es)?)?|q(slant|q)?|ft(harpoon(down|up)|threetimes|leftarrows|arrow(tail)?|right(squigarrow|harpoons|arrow(s)?))|g)?|v(nE|ertneqq)|f(isht|loor|r)|E(g)?|l(hard|corner|tri|arr)?|a(ng(d|le)?|cute|t(e(s)?|ail)?|p|emptyv|quo|rr(sim|hk|tl|pl|fs|lp|b(fs)?)?|gran|mbda)|r(har(d)?|corner|tri|arr|m)|g(E)?|m(idot|oust(ache)?)|b(arr|r(k(sl(d|u)|e)|ac(e|k))|brk)|A(tail|arr|rr))|L(s(h|cr|trok)|c(y|edil|aron)|t|o(ng(RightArrow|left(arrow|rightarrow)|rightarrow|Left(RightArrow|Arrow))|pf|wer(RightArrow|LeftArrow))|T|e(ss(Greater|SlantEqual|Tilde|EqualGreater|FullEqual|Less)|ft(Right(Vector|Arrow)|Ceiling|T(ee(Vector|Arrow)?|riangle(Bar|Equal)?)|Do(ubleBracket|wn(TeeVector|Vector(Bar)?))|Up(TeeVector|DownVector|Vector(Bar)?)|Vector(Bar)?|arrow|rightarrow|Floor|A(ngleBracket|rrow(RightArrow|Bar)?)))|Jcy|fr|l(eftarrow)?|a(ng|cute|placetrf|rr|mbda)|midot))
|
|
18
|
-
| (M(scr|cy|inusPlus|opf|u|e(diumSpace|llintrf)|fr|ap)|m(s(cr|tpos)|ho|nplus|c(y|omma)|i(nus(d(u)?|b)?|cro|d(cir|dot|ast)?)|o(dels|pf)|dash|u(ltimap|map)?|p|easuredangle|DDot|fr|l(cp|dr)|a(cr|p(sto(down|up|left)?)?|l(t(ese)?|e)|rker)))
|
|
19
|
-
| (n(s(hort(parallel|mid)|c(cue|e|r)?|im(e(q)?)?|u(cc(eq)?|p(set(eq(q)?)?|e|E)?|b(set(eq(q)?)?|e|E)?)|par|qsu(pe|be)|mid)|Rightarrow|h(par|arr|Arr)|G(t(v)?|g)|c(y|ong(dot)?|up|edil|a(p|ron))|t(ilde|lg|riangle(left(eq)?|right(eq)?)|gl)|i(s(d)?|v)?|o(t(ni(v(c|a|b))?|in(dot|v(c|a|b)|E)?)?|pf)|dash|u(m(sp|ero)?)?|jcy|p(olint|ar(sl|t|allel)?|r(cue|e(c(eq)?)?)?)|e(s(im|ear)|dot|quiv|ar(hk|r(ow)?)|xist(s)?|Arr)?|v(sim|infin|Harr|dash|Dash|l(t(rie)?|e|Arr)|ap|r(trie|Arr)|g(t|e))|fr|w(near|ar(hk|r(ow)?)|Arr)|V(dash|Dash)|l(sim|t(ri(e)?)?|dr|e(s(s)?|q(slant|q)?|ft(arrow|rightarrow))?|E|arr|Arr)|a(ng|cute|tur(al(s)?)?|p(id|os|prox|E)?|bla)|r(tri(e)?|ightarrow|arr(c|w)?|Arr)|g(sim|t(r)?|e(s|q(slant|q)?)?|E)|mid|L(t(v)?|eft(arrow|rightarrow)|l)|b(sp|ump(e)?))|N(scr|c(y|edil|aron)|tilde|o(nBreakingSpace|Break|t(R(ightTriangle(Bar|Equal)?|everseElement)|Greater(Greater|SlantEqual|Tilde|Equal|FullEqual|Less)?|S(u(cceeds(SlantEqual|Tilde|Equal)?|perset(Equal)?|bset(Equal)?)|quareSu(perset(Equal)?|bset(Equal)?))|Hump(DownHump|Equal)|Nested(GreaterGreater|LessLess)|C(ongruent|upCap)|Tilde(Tilde|Equal|FullEqual)?|DoubleVerticalBar|Precedes(SlantEqual|Equal)?|E(qual(Tilde)?|lement|xists)|VerticalBar|Le(ss(Greater|SlantEqual|Tilde|Equal|Less)?|ftTriangle(Bar|Equal)?))?|pf)|u|e(sted(GreaterGreater|LessLess)|wLine|gative(MediumSpace|Thi(nSpace|ckSpace)|VeryThinSpace))|Jcy|fr|acute))
|
|
20
|
-
| (o(s(cr|ol|lash)|h(m|bar)|c(y|ir(c)?)|ti(lde|mes(as)?)|S|int|opf|d(sold|iv|ot|ash|blac)|uml|p(erp|lus|ar)|elig|vbar|f(cir|r)|l(c(ir|ross)|t|ine|arr)|a(st|cute)|r(slope|igof|or|d(er(of)?|f|m)?|v|arr)?|g(t|on|rave)|m(i(nus|cron|d)|ega|acr))|O(s(cr|lash)|c(y|irc)|ti(lde|mes)|opf|dblac|uml|penCurly(DoubleQuote|Quote)|ver(B(ar|rac(e|ket))|Parenthesis)|fr|Elig|acute|r|grave|m(icron|ega|acr)))
|
|
21
|
-
| (p(s(cr|i)|h(i(v)?|one|mmat)|cy|i(tchfork|v)?|o(intint|und|pf)|uncsp|er(cnt|tenk|iod|p|mil)|fr|l(us(sim|cir|two|d(o|u)|e|acir|mn|b)?|an(ck(h)?|kv))|ar(s(im|l)|t|a(llel)?)?|r(sim|n(sim|E|ap)|cue|ime(s)?|o(d|p(to)?|f(surf|line|alar))|urel|e(c(sim|n(sim|eqq|approx)|curlyeq|eq|approx)?)?|E|ap)?|m)|P(s(cr|i)|hi|cy|i|o(incareplane|pf)|fr|lusMinus|artialD|r(ime|o(duct|portion(al)?)|ecedes(SlantEqual|Tilde|Equal)?)?))
|
|
22
|
-
| (q(scr|int|opf|u(ot|est(eq)?|at(int|ernions))|prime|fr)|Q(scr|opf|UOT|fr))
|
|
23
|
-
| (R(s(h|cr)|ho|c(y|edil|aron)|Barr|ight(Ceiling|T(ee(Vector|Arrow)?|riangle(Bar|Equal)?)|Do(ubleBracket|wn(TeeVector|Vector(Bar)?))|Up(TeeVector|DownVector|Vector(Bar)?)|Vector(Bar)?|arrow|Floor|A(ngleBracket|rrow(Bar|LeftArrow)?))|o(undImplies|pf)|uleDelayed|e(verse(UpEquilibrium|E(quilibrium|lement)))?|fr|EG|a(ng|cute|rr(tl)?)|rightarrow)|r(s(h|cr|q(uo(r)?|b)|aquo)|h(o(v)?|ar(d|u(l)?))|nmid|c(y|ub|e(il|dil)|aron)|Barr|t(hree|imes|ri(e|f|ltri)?)|i(singdotseq|ng|ght(squigarrow|harpoon(down|up)|threetimes|left(harpoons|arrows)|arrow(tail)?|rightarrows))|Har|o(times|p(f|lus|ar)|a(ng|rr)|brk)|d(sh|ca|quo(r)?|ldhar)|uluhar|p(polint|ar(gt)?)|e(ct|al(s|ine|part)?|g)|f(isht|loor|r)|l(har|arr|m)|a(ng(d|e|le)?|c(ute|e)|t(io(nals)?|ail)|dic|emptyv|quo|rr(sim|hk|c|tl|pl|fs|w|lp|ap|b(fs)?)?)|rarr|x|moust(ache)?|b(arr|r(k(sl(d|u)|e)|ac(e|k))|brk)|A(tail|arr|rr)))
|
|
24
|
-
| (s(s(cr|tarf|etmn|mile)|h(y|c(hcy|y)|ort(parallel|mid)|arp)|c(sim|y|n(sim|E|ap)|cue|irc|polint|e(dil)?|E|a(p|ron))?|t(ar(f)?|r(ns|aight(phi|epsilon)))|i(gma(v|f)?|m(ne|dot|plus|e(q)?|l(E)?|rarr|g(E)?)?)|zlig|o(pf|ftcy|l(b(ar)?)?)|dot(e|b)?|u(ng|cc(sim|n(sim|eqq|approx)|curlyeq|eq|approx)?|p(s(im|u(p|b)|et(neq(q)?|eq(q)?)?)|hs(ol|ub)|1|n(e|E)|2|d(sub|ot)|3|plus|e(dot)?|E|larr|mult)?|m|b(s(im|u(p|b)|et(neq(q)?|eq(q)?)?)|n(e|E)|dot|plus|e(dot)?|E|rarr|mult)?)|pa(des(uit)?|r)|e(swar|ct|tm(n|inus)|ar(hk|r(ow)?)|xt|mi|Arr)|q(su(p(set(eq)?|e)?|b(set(eq)?|e)?)|c(up(s)?|ap(s)?)|u(f|ar(e|f))?)|fr(own)?|w(nwar|ar(hk|r(ow)?)|Arr)|larr|acute|rarr|m(t(e(s)?)?|i(d|le)|eparsl|a(shp|llsetminus))|bquo)|S(scr|hort(RightArrow|DownArrow|UpArrow|LeftArrow)|c(y|irc|edil|aron)?|tar|igma|H(cy|CHcy)|opf|u(c(hThat|ceeds(SlantEqual|Tilde|Equal)?)|p(set|erset(Equal)?)?|m|b(set(Equal)?)?)|OFTcy|q(uare(Su(perset(Equal)?|bset(Equal)?)|Intersection|Union)?|rt)|fr|acute|mallCircle))
|
|
25
|
-
| (t(s(hcy|c(y|r)|trok)|h(i(nsp|ck(sim|approx))|orn|e(ta(sym|v)?|re(4|fore))|k(sim|ap))|c(y|edil|aron)|i(nt|lde|mes(d|b(ar)?)?)|o(sa|p(cir|f(ork)?|bot)?|ea)|dot|prime|elrec|fr|w(ixt|ohead(leftarrow|rightarrow))|a(u|rget)|r(i(sb|time|dot|plus|e|angle(down|q|left(eq)?|right(eq)?)?|minus)|pezium|ade)|brk)|T(s(cr|trok)|RADE|h(i(nSpace|ckSpace)|e(ta|refore))|c(y|edil|aron)|S(cy|Hcy)|ilde(Tilde|Equal|FullEqual)?|HORN|opf|fr|a(u|b)|ripleDot))
|
|
26
|
-
| (u(scr|h(ar(l|r)|blk)|c(y|irc)|t(ilde|dot|ri(f)?)|Har|o(pf|gon)|d(har|arr|blac)|u(arr|ml)|p(si(h|lon)?|harpoon(left|right)|downarrow|uparrows|lus|arrow)|f(isht|r)|wangle|l(c(orn(er)?|rop)|tri)|a(cute|rr)|r(c(orn(er)?|rop)|tri|ing)|grave|m(l|acr)|br(cy|eve)|Arr)|U(scr|n(ion(Plus)?|der(B(ar|rac(e|ket))|Parenthesis))|c(y|irc)|tilde|o(pf|gon)|dblac|uml|p(si(lon)?|downarrow|Tee(Arrow)?|per(RightArrow|LeftArrow)|DownArrow|Equilibrium|arrow|Arrow(Bar|DownArrow)?)|fr|a(cute|rr(ocir)?)|ring|grave|macr|br(cy|eve)))
|
|
27
|
-
| (v(s(cr|u(pn(e|E)|bn(e|E)))|nsu(p|b)|cy|Bar(v)?|zigzag|opf|dash|prop|e(e(eq|bar)?|llip|r(t|bar))|Dash|fr|ltri|a(ngrt|r(s(igma|u(psetneq(q)?|bsetneq(q)?))|nothing|t(heta|riangle(left|right))|p(hi|i|ropto)|epsilon|kappa|r(ho)?))|rtri|Arr)|V(scr|cy|opf|dash(l)?|e(e|r(yThinSpace|t(ical(Bar|Separator|Tilde|Line))?|bar))|Dash|vdash|fr|bar))
|
|
28
|
-
| (w(scr|circ|opf|p|e(ierp|d(ge(q)?|bar))|fr|r(eath)?)|W(scr|circ|opf|edge|fr))
|
|
29
|
-
| (X(scr|i|opf|fr)|x(s(cr|qcup)|h(arr|Arr)|nis|c(irc|up|ap)|i|o(time|dot|p(f|lus))|dtri|u(tri|plus)|vee|fr|wedge|l(arr|Arr)|r(arr|Arr)|map))
|
|
30
|
-
| (y(scr|c(y|irc)|icy|opf|u(cy|ml)|en|fr|ac(y|ute))|Y(scr|c(y|irc)|opf|uml|Icy|Ucy|fr|acute|Acy))
|
|
31
|
-
| (z(scr|hcy|c(y|aron)|igrarr|opf|dot|e(ta|etrf)|fr|w(nj|j)|acute)|Z(scr|c(y|aron)|Hcy|opf|dot|e(ta|roWidthSpace)|fr|acute))
|
|
32
|
-
)
|
|
33
|
-
(;)
|
|
34
|
-
`, name: "constant.character.entity.named.$2.html" }, { captures: { 1: { name: "punctuation.definition.entity.html" }, 3: { name: "punctuation.definition.entity.html" } }, match: "(&)#[0-9]+(;)", name: "constant.character.entity.numeric.decimal.html" }, { captures: { 1: { name: "punctuation.definition.entity.html" }, 3: { name: "punctuation.definition.entity.html" } }, match: "(&)#[xX][0-9a-fA-F]+(;)", name: "constant.character.entity.numeric.hexadecimal.html" }, { match: "&(?=[a-zA-Z0-9]+;)", name: "invalid.illegal.ambiguous-ampersand.html" }] }, math: { patterns: [{ begin: `(?i)(<)(math)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.structure.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)", endCaptures: { 0: { name: "meta.tag.structure.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.structure.$2.html", patterns: [{ begin: "(?<!>)\\G", end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }], repository: { attribute: { patterns: [{ begin: "(s(hift|ymmetric|cript(sizemultiplier|level|minsize)|t(ackalign|retchy)|ide|u(pscriptshift|bscriptshift)|e(parator(s)?|lection)|rc)|h(eight|ref)|n(otation|umalign)|c(haralign|olumn(spa(n|cing)|width|lines|align)|lose|rossout)|i(n(dent(shift(first|last)?|target|align(first|last)?)|fixlinebreakstyle)|d)|o(pen|verflow)|d(i(splay(style)?|r)|e(nomalign|cimalpoint|pth))|position|e(dge|qual(columns|rows))|voffset|f(orm|ence|rame(spacing)?)|width|l(space|ine(thickness|leading|break(style|multchar)?)|o(ngdivstyle|cation)|ength|quote|argeop)|a(c(cent(under)?|tiontype)|l(t(text|img(-(height|valign|width))?)|ign(mentscope)?))|r(space|ow(spa(n|cing)|lines|align)|quote)|groupalign|x(link:href|mlns)|m(in(size|labelspacing)|ovablelimits|a(th(size|color|variant|background)|xsize))|bevelled)(?![\\w:-])", beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, end: "(?=\\s*+[^=\\s])", name: "meta.attribute.$1.html", patterns: [{ include: "#attribute-interior" }] }, { begin: `([^\\x{0020}"'<>/=\\x{0000}-\\x{001F}\\x{007F}-\\x{009F}\\x{FDD0}-\\x{FDEF}\\x{FFFE}\\x{FFFF}\\x{1FFFE}\\x{1FFFF}\\x{2FFFE}\\x{2FFFF}\\x{3FFFE}\\x{3FFFF}\\x{4FFFE}\\x{4FFFF}\\x{5FFFE}\\x{5FFFF}\\x{6FFFE}\\x{6FFFF}\\x{7FFFE}\\x{7FFFF}\\x{8FFFE}\\x{8FFFF}\\x{9FFFE}\\x{9FFFF}\\x{AFFFE}\\x{AFFFF}\\x{BFFFE}\\x{BFFFF}\\x{CFFFE}\\x{CFFFF}\\x{DFFFE}\\x{DFFFF}\\x{EFFFE}\\x{EFFFF}\\x{FFFFE}\\x{FFFFF}\\x{10FFFE}\\x{10FFFF}]+)`, beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, comment: "Anything else that is valid", end: "(?=\\s*+[^=\\s])", name: "meta.attribute.unrecognized.$1.html", patterns: [{ include: "#attribute-interior" }] }, { match: "[^\\s>]+", name: "invalid.illegal.character-not-allowed-here.html" }] }, tags: { patterns: [{ include: "#comment" }, { include: "#cdata" }, { captures: { 0: { name: "meta.tag.structure.math.$2.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(annotation|annotation-xml|semantics|menclose|merror|mfenced|mfrac|mpadded|mphantom|mroot|mrow|msqrt|mstyle|mmultiscripts|mover|mprescripts|msub|msubsup|msup|munder|munderover|none|mlabeledtr|mtable|mtd|mtr|mlongdiv|mscarries|mscarry|msgroup|msline|msrow|mstack|maction)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.structure.math.$2.html" }, { begin: `(?i)(<)(annotation|annotation-xml|semantics|menclose|merror|mfenced|mfrac|mpadded|mphantom|mroot|mrow|msqrt|mstyle|mmultiscripts|mover|mprescripts|msub|msubsup|msup|munder|munderover|none|mlabeledtr|mtable|mtd|mtr|mlongdiv|mscarries|mscarry|msgroup|msline|msrow|mstack|maction)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.structure.math.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.structure.math.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" }, 4: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.structure.math.$2.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { captures: { 0: { name: "meta.tag.inline.math.$2.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(mi|mn|mo|ms|mspace|mtext|maligngroup|malignmark)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.inline.math.$2.html" }, { begin: `(?i)(<)(mi|mn|mo|ms|mspace|mtext|maligngroup|malignmark)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.inline.math.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.inline.math.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" }, 4: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.inline.math.$2.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.inline.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { captures: { 0: { name: "meta.tag.object.math.$2.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(mglyph)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.object.math.$2.html" }, { begin: `(?i)(<)(mglyph)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.object.math.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.object.math.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" }, 4: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.object.math.$2.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.object.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { captures: { 0: { name: "meta.tag.other.invalid.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.unrecognized-tag.html" }, 4: { patterns: [{ include: "#attribute" }] }, 6: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(([\\w:]+))(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.other.invalid.html" }, { begin: `(?i)(<)((\\w[^\\s>]*))(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.other.invalid.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.unrecognized-tag.html" }, 4: { patterns: [{ include: "#attribute" }] }, 6: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.other.invalid.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.unrecognized-tag.html" }, 4: { name: "punctuation.definition.tag.end.html" }, 5: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.other.invalid.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.other.invalid.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { include: "#tags-invalid" }] } } }, svg: { patterns: [{ begin: `(?i)(<)(svg)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.structure.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)", endCaptures: { 0: { name: "meta.tag.structure.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.structure.$2.html", patterns: [{ begin: "(?<!>)\\G", end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }], repository: { attribute: { patterns: [{ begin: "(s(hape-rendering|ystemLanguage|cale|t(yle|itchTiles|op-(color|opacity)|dDeviation|em(h|v)|artOffset|r(i(ng|kethrough-(thickness|position))|oke(-(opacity|dash(offset|array)|width|line(cap|join)|miterlimit))?))|urfaceScale|p(e(cular(Constant|Exponent)|ed)|acing|readMethod)|eed|lope)|h(oriz-(origin-x|adv-x)|eight|anging|ref(lang)?)|y(1|2|ChannelSelector)?|n(umOctaves|ame)|c(y|o(ntentS(criptType|tyleType)|lor(-(interpolation(-filters)?|profile|rendering))?)|ursor|l(ip(-(path|rule)|PathUnits)?|ass)|a(p-height|lcMode)|x)|t(ype|o|ext(-(decoration|anchor|rendering)|Length)|a(rget(X|Y)?|b(index|leValues))|ransform)|i(n(tercept|2)?|d(eographic)?|mage-rendering)|z(oomAndPan)?|o(p(erator|acity)|ver(flow|line-(thickness|position))|ffset|r(i(ent(ation)?|gin)|der))|d(y|i(splay|visor|ffuseConstant|rection)|ominant-baseline|ur|e(scent|celerate)|x)?|u(1|n(i(code(-(range|bidi))?|ts-per-em)|derline-(thickness|position))|2)|p(ing|oint(s(At(X|Y|Z))?|er-events)|a(nose-1|t(h(Length)?|tern(ContentUnits|Transform|Units))|int-order)|r(imitiveUnits|eserveA(spectRatio|lpha)))|e(n(d|able-background)|dgeMode|levation|x(ternalResourcesRequired|ponent))|v(i(sibility|ew(Box|Target))|-(hanging|ideographic|alphabetic|mathematical)|e(ctor-effect|r(sion|t-(origin-(y|x)|adv-y)))|alues)|k(1|2|3|e(y(Splines|Times|Points)|rn(ing|el(Matrix|UnitLength)))|4)?|f(y|il(ter(Res|Units)?|l(-(opacity|rule))?)|o(nt-(s(t(yle|retch)|ize(-adjust)?)|variant|family|weight)|rmat)|lood-(color|opacity)|r(om)?|x)|w(idth(s)?|ord-spacing|riting-mode)|l(i(ghting-color|mitingConeAngle)|ocal|e(ngthAdjust|tter-spacing)|ang)|a(scent|cc(umulate|ent-height)|ttribute(Name|Type)|zimuth|dditive|utoReverse|l(ignment-baseline|phabetic|lowReorder)|rabic-form|mplitude)|r(y|otate|e(s(tart|ult)|ndering-intent|peat(Count|Dur)|quired(Extensions|Features)|f(X|Y|errerPolicy)|l)|adius|x)?|g(1|2|lyph(Ref|-(name|orientation-(horizontal|vertical)))|radient(Transform|Units))|x(1|2|ChannelSelector|-height|link:(show|href|t(ype|itle)|a(ctuate|rcrole)|role)|ml:(space|lang|base))?|m(in|ode|e(thod|dia)|a(sk(ContentUnits|Units)?|thematical|rker(Height|-(start|end|mid)|Units|Width)|x))|b(y|ias|egin|ase(Profile|line-shift|Frequency)|box))(?![\\w:-])", beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, end: "(?=\\s*+[^=\\s])", name: "meta.attribute.$1.html", patterns: [{ include: "#attribute-interior" }] }, { begin: `([^\\x{0020}"'<>/=\\x{0000}-\\x{001F}\\x{007F}-\\x{009F}\\x{FDD0}-\\x{FDEF}\\x{FFFE}\\x{FFFF}\\x{1FFFE}\\x{1FFFF}\\x{2FFFE}\\x{2FFFF}\\x{3FFFE}\\x{3FFFF}\\x{4FFFE}\\x{4FFFF}\\x{5FFFE}\\x{5FFFF}\\x{6FFFE}\\x{6FFFF}\\x{7FFFE}\\x{7FFFF}\\x{8FFFE}\\x{8FFFF}\\x{9FFFE}\\x{9FFFF}\\x{AFFFE}\\x{AFFFF}\\x{BFFFE}\\x{BFFFF}\\x{CFFFE}\\x{CFFFF}\\x{DFFFE}\\x{DFFFF}\\x{EFFFE}\\x{EFFFF}\\x{FFFFE}\\x{FFFFF}\\x{10FFFE}\\x{10FFFF}]+)`, beginCaptures: { 0: { name: "entity.other.attribute-name.html" } }, comment: "Anything else that is valid", end: "(?=\\s*+[^=\\s])", name: "meta.attribute.unrecognized.$1.html", patterns: [{ include: "#attribute-interior" }] }, { match: "[^\\s>]+", name: "invalid.illegal.character-not-allowed-here.html" }] }, tags: { patterns: [{ include: "#comment" }, { include: "#cdata" }, { captures: { 0: { name: "meta.tag.metadata.svg.$2.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(color-profile|desc|metadata|script|style|title)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.metadata.svg.$2.html" }, { begin: `(?i)(<)(color-profile|desc|metadata|script|style|title)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.metadata.svg.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.metadata.svg.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" }, 4: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.metadata.svg.$2.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { captures: { 0: { name: "meta.tag.structure.svg.$2.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(animateMotion|clipPath|defs|feComponentTransfer|feDiffuseLighting|feMerge|feSpecularLighting|filter|g|hatch|linearGradient|marker|mask|mesh|meshgradient|meshpatch|meshrow|pattern|radialGradient|switch|text|textPath)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.structure.svg.$2.html" }, { begin: `(?i)(<)(animateMotion|clipPath|defs|feComponentTransfer|feDiffuseLighting|feMerge|feSpecularLighting|filter|g|hatch|linearGradient|marker|mask|mesh|meshgradient|meshpatch|meshrow|pattern|radialGradient|switch|text|textPath)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.structure.svg.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.structure.svg.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" }, 4: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.structure.svg.$2.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { captures: { 0: { name: "meta.tag.inline.svg.$2.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(a|animate|discard|feBlend|feColorMatrix|feComposite|feConvolveMatrix|feDisplacementMap|feDistantLight|feDropShadow|feFlood|feFuncA|feFuncB|feFuncG|feFuncR|feGaussianBlur|feMergeNode|feMorphology|feOffset|fePointLight|feSpotLight|feTile|feTurbulence|hatchPath|mpath|set|solidcolor|stop|tspan)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.inline.svg.$2.html" }, { begin: `(?i)(<)(a|animate|discard|feBlend|feColorMatrix|feComposite|feConvolveMatrix|feDisplacementMap|feDistantLight|feDropShadow|feFlood|feFuncA|feFuncB|feFuncG|feFuncR|feGaussianBlur|feMergeNode|feMorphology|feOffset|fePointLight|feSpotLight|feTile|feTurbulence|hatchPath|mpath|set|solidcolor|stop|tspan)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.inline.svg.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.inline.svg.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" }, 4: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.inline.svg.$2.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.inline.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { captures: { 0: { name: "meta.tag.object.svg.$2.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(circle|ellipse|feImage|foreignObject|image|line|path|polygon|polyline|rect|symbol|use|view)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.object.svg.$2.html" }, { begin: `(?i)(<)(a|circle|ellipse|feImage|foreignObject|image|line|path|polygon|polyline|rect|symbol|use|view)(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.object.svg.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { patterns: [{ include: "#attribute" }] }, 5: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)(\\2)\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.object.svg.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" }, 4: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.object.svg.$2.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.object.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { captures: { 0: { name: "meta.tag.other.svg.$2.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" }, 4: { patterns: [{ include: "#attribute" }] }, 6: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)((altGlyph|altGlyphDef|altGlyphItem|animateColor|animateTransform|cursor|font|font-face|font-face-format|font-face-name|font-face-src|font-face-uri|glyph|glyphRef|hkern|missing-glyph|tref|vkern))(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.other.svg.$2.html" }, { begin: `(?i)(<)((altGlyph|altGlyphDef|altGlyphItem|animateColor|animateTransform|cursor|font|font-face|font-face-format|font-face-name|font-face-src|font-face-uri|glyph|glyphRef|hkern|missing-glyph|tref|vkern))(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.other.svg.$2.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" }, 4: { patterns: [{ include: "#attribute" }] }, 6: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.other.svg.$2.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" }, 4: { name: "punctuation.definition.tag.end.html" }, 5: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.other.svg.$2.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.other.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { captures: { 0: { name: "meta.tag.other.invalid.void.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.unrecognized-tag.html" }, 4: { patterns: [{ include: "#attribute" }] }, 6: { name: "punctuation.definition.tag.end.html" } }, match: `(?i)(<)(([\\w:]+))(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(/>))`, name: "meta.element.other.invalid.html" }, { begin: `(?i)(<)((\\w[^\\s>]*))(?=\\s|/?>)(?:(([^"'>]|"[^"]*"|'[^']*')*)(>))?`, beginCaptures: { 0: { name: "meta.tag.other.invalid.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.unrecognized-tag.html" }, 4: { patterns: [{ include: "#attribute" }] }, 6: { name: "punctuation.definition.tag.end.html" } }, end: "(?i)(</)((\\2))\\s*(>)|(/>)|(?=</\\w+)", endCaptures: { 0: { name: "meta.tag.other.invalid.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.unrecognized-tag.html" }, 4: { name: "punctuation.definition.tag.end.html" }, 5: { name: "punctuation.definition.tag.end.html" } }, name: "meta.element.other.invalid.html", patterns: [{ begin: "(?<!>)\\G", end: "(?=/>)|>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.other.invalid.start.html", patterns: [{ include: "#attribute" }] }, { include: "#tags" }] }, { include: "#tags-invalid" }] } } }, "tags-invalid": { patterns: [{ begin: "(</?)((\\w[^\\s>]*))(?<!/)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.unrecognized-tag.html" } }, end: "((?: ?/)?>)", endCaptures: { 1: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.other.$2.html", patterns: [{ include: "#attribute" }] }] }, "tags-valid": { patterns: [{ begin: "(^[ \\t]+)?(?=<(?i:style)\\b(?!-))", beginCaptures: { 1: { name: "punctuation.whitespace.embedded.leading.html" } }, end: "(?!\\G)([ \\t]*$\\n?)?", endCaptures: { 1: { name: "punctuation.whitespace.embedded.trailing.html" } }, patterns: [{ begin: "(?i)(<)(style)(?=\\s|/?>)", beginCaptures: { 0: { name: "meta.tag.metadata.style.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: "(?i)((<)/)(style)\\s*(>)", endCaptures: { 0: { name: "meta.tag.metadata.style.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "source.css-ignored-vscode" }, 3: { name: "entity.name.tag.html" }, 4: { name: "punctuation.definition.tag.end.html" } }, name: "meta.embedded.block.html", patterns: [{ begin: "\\G", captures: { 1: { name: "punctuation.definition.tag.end.html" } }, end: "(>)", name: "meta.tag.metadata.style.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?!\\G)", end: "(?=</(?i:style))", name: "source.css", patterns: [{ include: "source.css" }] }] }] }, { begin: "(^[ \\t]+)?(?=<(?i:script)\\b(?!-))", beginCaptures: { 1: { name: "punctuation.whitespace.embedded.leading.html" } }, end: "(?!\\G)([ \\t]*$\\n?)?", endCaptures: { 1: { name: "punctuation.whitespace.embedded.trailing.html" } }, patterns: [{ begin: "(<)((?i:script))\\b", beginCaptures: { 0: { name: "meta.tag.metadata.script.start.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: "(/)((?i:script))(>)", endCaptures: { 0: { name: "meta.tag.metadata.script.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "punctuation.definition.tag.end.html" } }, name: "meta.embedded.block.html", patterns: [{ begin: "\\G", end: "(?=/)", patterns: [{ begin: "(>)", beginCaptures: { 0: { name: "meta.tag.metadata.script.start.html" }, 1: { name: "punctuation.definition.tag.end.html" } }, end: "((<))(?=/(?i:script))", endCaptures: { 0: { name: "meta.tag.metadata.script.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "source.js-ignored-vscode" } }, patterns: [{ begin: "\\G", end: "(?=</(?i:script))", name: "source.js", patterns: [{ begin: "(^[ \\t]+)?(?=//)", beginCaptures: { 1: { name: "punctuation.whitespace.comment.leading.js" } }, end: "(?!\\G)", patterns: [{ begin: "//", beginCaptures: { 0: { name: "punctuation.definition.comment.js" } }, end: "(?=<\/script)|\\n", name: "comment.line.double-slash.js" }] }, { begin: "/\\*", captures: { 0: { name: "punctuation.definition.comment.js" } }, end: "\\*/|(?=<\/script)", name: "comment.block.js" }, { include: "source.js" }] }] }, { begin: "\\G", end: `(?ix:
|
|
35
|
-
(?=> # Tag without type attribute
|
|
36
|
-
| type(?=[\\s=])
|
|
37
|
-
(?!\\s*=\\s*
|
|
38
|
-
(
|
|
39
|
-
'' # Empty
|
|
40
|
-
| "" # Values
|
|
41
|
-
| ('|"|)
|
|
42
|
-
(
|
|
43
|
-
text/ # Text mime-types
|
|
44
|
-
(
|
|
45
|
-
javascript(1\\.[0-5])?
|
|
46
|
-
| x-javascript
|
|
47
|
-
| jscript
|
|
48
|
-
| livescript
|
|
49
|
-
| (x-)?ecmascript
|
|
50
|
-
| babel # Javascript variant currently
|
|
51
|
-
# recognized as such
|
|
52
|
-
)
|
|
53
|
-
| application/ # Application mime-types
|
|
54
|
-
(
|
|
55
|
-
(x-)?javascript
|
|
56
|
-
| (x-)?ecmascript
|
|
57
|
-
)
|
|
58
|
-
| module
|
|
59
|
-
)
|
|
60
|
-
[\\s"'>]
|
|
61
|
-
)
|
|
62
|
-
)
|
|
63
|
-
)
|
|
64
|
-
)`, name: "meta.tag.metadata.script.start.html", patterns: [{ include: "#attribute" }] }, { begin: `(?ix:
|
|
65
|
-
(?=
|
|
66
|
-
type\\s*=\\s*
|
|
67
|
-
('|"|)
|
|
68
|
-
text/
|
|
69
|
-
(
|
|
70
|
-
x-handlebars
|
|
71
|
-
| (x-(handlebars-)?|ng-)?template
|
|
72
|
-
| html
|
|
73
|
-
)
|
|
74
|
-
[\\s"'>]
|
|
75
|
-
)
|
|
76
|
-
)`, end: "((<))(?=/(?i:script))", endCaptures: { 0: { name: "meta.tag.metadata.script.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "text.html.basic" } }, patterns: [{ begin: "\\G", end: "(>)", endCaptures: { 1: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.script.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?!\\G)", end: "(?=</(?i:script))", name: "text.html.basic", patterns: [{ include: "text.html.basic" }] }] }, { begin: "(?=(?i:type))", end: "(<)(?=/(?i:script))", endCaptures: { 0: { name: "meta.tag.metadata.script.end.html" }, 1: { name: "punctuation.definition.tag.begin.html" } }, patterns: [{ begin: "\\G", end: "(>)", endCaptures: { 1: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.script.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?!\\G)", end: "(?=</(?i:script))", name: "source.unknown" }] }] }] }] }, { begin: "(?i)(<)(base|link|meta)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: "/?>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.$2.void.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)(noscript|title)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.$2.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(</)(noscript|title)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.$2.end.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)(col|hr|input)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: "/?>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.$2.void.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)(address|article|aside|blockquote|body|button|caption|colgroup|datalist|dd|details|dialog|div|dl|dt|fieldset|figcaption|figure|footer|form|head|header|hgroup|html|h[1-6]|label|legend|li|main|map|menu|meter|nav|ol|optgroup|option|output|p|pre|progress|section|select|slot|summary|table|tbody|td|template|textarea|tfoot|th|thead|tr|ul)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.$2.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(</)(address|article|aside|blockquote|body|button|caption|colgroup|datalist|dd|details|dialog|div|dl|dt|fieldset|figcaption|figure|footer|form|head|header|hgroup|html|h[1-6]|label|legend|li|main|map|menu|meter|nav|ol|optgroup|option|output|p|pre|progress|section|select|slot|summary|table|tbody|td|template|textarea|tfoot|th|thead|tr|ul)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.$2.end.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)(area|br|wbr)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: "/?>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.inline.$2.void.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)(a|abbr|b|bdi|bdo|cite|code|data|del|dfn|em|i|ins|kbd|mark|q|rp|rt|ruby|s|samp|small|span|strong|sub|sup|time|u|var)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.inline.$2.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(</)(a|abbr|b|bdi|bdo|cite|code|data|del|dfn|em|i|ins|kbd|mark|q|rp|rt|ruby|s|samp|small|span|strong|sub|sup|time|u|var)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.inline.$2.end.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)(embed|img|param|source|track)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: "/?>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.object.$2.void.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)(audio|canvas|iframe|object|picture|video)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.object.$2.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(</)(audio|canvas|iframe|object|picture|video)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.object.$2.end.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)((basefont|isindex))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" } }, end: "/?>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.metadata.$2.void.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)((center|frameset|noembed|noframes))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.$2.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(</)((center|frameset|noembed|noframes))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.structure.$2.end.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)((acronym|big|blink|font|strike|tt|xmp))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.inline.$2.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(</)((acronym|big|blink|font|strike|tt|xmp))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.inline.$2.end.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)((frame))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" } }, end: "/?>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.object.$2.void.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)((applet))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.object.$2.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(</)((applet))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.deprecated.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.object.$2.end.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(<)((dir|keygen|listing|menuitem|plaintext|spacer))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.no-longer-supported.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.other.$2.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(?i)(</)((dir|keygen|listing|menuitem|plaintext|spacer))(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" }, 3: { name: "invalid.illegal.no-longer-supported.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.other.$2.end.html", patterns: [{ include: "#attribute" }] }, { include: "#math" }, { include: "#svg" }, { begin: "(<)([a-zA-Z][.0-9_a-zA-Z\\x{00B7}\\x{00C0}-\\x{00D6}\\x{00D8}-\\x{00F6}\\x{00F8}-\\x{037D}\\x{037F}-\\x{1FFF}\\x{200C}-\\x{200D}\\x{203F}-\\x{2040}\\x{2070}-\\x{218F}\\x{2C00}-\\x{2FEF}\\x{3001}-\\x{D7FF}\\x{F900}-\\x{FDCF}\\x{FDF0}-\\x{FFFD}\\x{10000}-\\x{EFFFF}]*-[\\-.0-9_a-zA-Z\\x{00B7}\\x{00C0}-\\x{00D6}\\x{00D8}-\\x{00F6}\\x{00F8}-\\x{037D}\\x{037F}-\\x{1FFF}\\x{200C}-\\x{200D}\\x{203F}-\\x{2040}\\x{2070}-\\x{218F}\\x{2C00}-\\x{2FEF}\\x{3001}-\\x{D7FF}\\x{F900}-\\x{FDCF}\\x{FDF0}-\\x{FFFD}\\x{10000}-\\x{EFFFF}]*)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: "/?>", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.custom.start.html", patterns: [{ include: "#attribute" }] }, { begin: "(</)([a-zA-Z][.0-9_a-zA-Z\\x{00B7}\\x{00C0}-\\x{00D6}\\x{00D8}-\\x{00F6}\\x{00F8}-\\x{037D}\\x{037F}-\\x{1FFF}\\x{200C}-\\x{200D}\\x{203F}-\\x{2040}\\x{2070}-\\x{218F}\\x{2C00}-\\x{2FEF}\\x{3001}-\\x{D7FF}\\x{F900}-\\x{FDCF}\\x{FDF0}-\\x{FFFD}\\x{10000}-\\x{EFFFF}]*-[\\-.0-9_a-zA-Z\\x{00B7}\\x{00C0}-\\x{00D6}\\x{00D8}-\\x{00F6}\\x{00F8}-\\x{037D}\\x{037F}-\\x{1FFF}\\x{200C}-\\x{200D}\\x{203F}-\\x{2040}\\x{2070}-\\x{218F}\\x{2C00}-\\x{2FEF}\\x{3001}-\\x{D7FF}\\x{F900}-\\x{FDCF}\\x{FDF0}-\\x{FFFD}\\x{10000}-\\x{EFFFF}]*)(?=\\s|/?>)", beginCaptures: { 1: { name: "punctuation.definition.tag.begin.html" }, 2: { name: "entity.name.tag.html" } }, end: ">", endCaptures: { 0: { name: "punctuation.definition.tag.end.html" } }, name: "meta.tag.custom.end.html", patterns: [{ include: "#attribute" }] }] }, "xml-processing": { begin: "(<\\?)(xml)", captures: { 1: { name: "punctuation.definition.tag.html" }, 2: { name: "entity.name.tag.html" } }, end: "(\\?>)", name: "meta.tag.metadata.processing.xml.html", patterns: [{ include: "#attribute" }] } }, scopeName: "text.html.basic", embeddedLangs: ["javascript", "css"] });
|
|
77
|
-
var r = [
|
|
78
|
-
...t,
|
|
79
|
-
...e,
|
|
80
|
-
n
|
|
81
|
-
];
|
|
82
|
-
export {
|
|
83
|
-
r as default
|
|
84
|
-
};
|