Welcome to mirror list, hosted at ThFree Co, Russian Federation.

php-template.js.map « highlight « js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ac857ed64b00c8b79a3992719f92f817bf1abd6 (plain)
1
{"version":3,"file":"highlight/php-template.js?v=39cbc717a221e0d5709e","mappings":"oHAqDAA,EAAOC,QA7CP,SAAqBC,GACnB,MAAO,CACLC,KAAM,eACNC,YAAa,MACbC,SAAU,CACR,CACEC,MAAO,cACPC,IAAK,MACLH,YAAa,MACbC,SAAU,CAGR,CACEC,MAAO,OACPC,IAAK,OACLC,MAAM,GAER,CACEF,MAAO,KACPC,IAAK,IACLC,MAAM,GAER,CACEF,MAAO,KACPC,IAAK,IACLC,MAAM,GAERN,EAAKO,QAAQP,EAAKQ,iBAAkB,CAClCC,QAAS,KACTC,UAAW,KACXP,SAAU,KACVG,MAAM,IAERN,EAAKO,QAAQP,EAAKW,kBAAmB,CACnCF,QAAS,KACTC,UAAW,KACXP,SAAU,KACVG,MAAM","sources":["webpack:///text/node_modules/highlight.js/lib/languages/php-template.js"],"sourcesContent":["/*\nLanguage: PHP Template\nRequires: xml.js, php.js\nAuthor: Josh Goebel <hello@joshgoebel.com>\nWebsite: https://www.php.net\nCategory: common\n*/\n\nfunction phpTemplate(hljs) {\n  return {\n    name: \"PHP template\",\n    subLanguage: 'xml',\n    contains: [\n      {\n        begin: /<\\?(php|=)?/,\n        end: /\\?>/,\n        subLanguage: 'php',\n        contains: [\n          // We don't want the php closing tag ?> to close the PHP block when\n          // inside any of the following blocks:\n          {\n            begin: '/\\\\*',\n            end: '\\\\*/',\n            skip: true\n          },\n          {\n            begin: 'b\"',\n            end: '\"',\n            skip: true\n          },\n          {\n            begin: 'b\\'',\n            end: '\\'',\n            skip: true\n          },\n          hljs.inherit(hljs.APOS_STRING_MODE, {\n            illegal: null,\n            className: null,\n            contains: null,\n            skip: true\n          }),\n          hljs.inherit(hljs.QUOTE_STRING_MODE, {\n            illegal: null,\n            className: null,\n            contains: null,\n            skip: true\n          })\n        ]\n      }\n    ]\n  };\n}\n\nmodule.exports = phpTemplate;\n"],"names":["module","exports","hljs","name","subLanguage","contains","begin","end","skip","inherit","APOS_STRING_MODE","illegal","className","QUOTE_STRING_MODE"],"sourceRoot":""}