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

handlebars.js.map « highlight « js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c15bce69c0e53c3fe4e32c5a592f5e1c0c6fb5f8 (plain)
1
{"version":3,"sources":["webpack:///./node_modules/highlight.js/lib/languages/handlebars.js"],"names":["module","exports","hljs","BUILT_INS","aliases","case_insensitive","subLanguage","contains","COMMENT","className","begin","end","keywords","starts","endsWithParent","relevance","QUOTE_STRING_MODE"],"mappings":"oFAAAA,EAAOC,QAAU,SAASC,GACxB,IAAIC,EAAY,CAAC,eAAgB,0GACjC,MAAO,CACLC,QAAS,CAAC,MAAO,WAAY,mBAC7BC,kBAAkB,EAClBC,YAAa,MACbC,SAAU,CACVL,EAAKM,QAAQ,WAAY,WACvB,CACEC,UAAW,eACXC,MAAO,YAAaC,IAAK,OACzBJ,SAAU,CACR,CACEE,UAAW,OACXC,MAAO,eACPE,SAAUT,EACVU,OAAQ,CACNC,gBAAgB,EAAMC,UAAW,EACjCR,SAAU,CACRL,EAAKc,uBAMf,CACEP,UAAW,oBACXC,MAAO,OAAQC,IAAK,OACpBC,SAAUT","file":"highlight/handlebars.js?v=ba17faaa56f87e0caf7b","sourcesContent":["module.exports = function(hljs) {\n  var BUILT_INS = {'builtin-name': 'each in with if else unless bindattr action collection debugger log outlet template unbound view yield'};\n  return {\n    aliases: ['hbs', 'html.hbs', 'html.handlebars'],\n    case_insensitive: true,\n    subLanguage: 'xml',\n    contains: [\n    hljs.COMMENT('{{!(--)?', '(--)?}}'),\n      {\n        className: 'template-tag',\n        begin: /\\{\\{[#\\/]/, end: /\\}\\}/,\n        contains: [\n          {\n            className: 'name',\n            begin: /[a-zA-Z\\.-]+/,\n            keywords: BUILT_INS,\n            starts: {\n              endsWithParent: true, relevance: 0,\n              contains: [\n                hljs.QUOTE_STRING_MODE\n              ]\n            }\n          }\n        ]\n      },\n      {\n        className: 'template-variable',\n        begin: /\\{\\{/, end: /\\}\\}/,\n        keywords: BUILT_INS\n      }\n    ]\n  };\n};"],"sourceRoot":""}