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

http.js.map « highlight « js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66bee8caf83c9ef33e55c60f429f70085ba97a1d (plain)
1
{"version":3,"sources":["webpack:///./node_modules/highlight.js/lib/languages/http.js"],"names":["module","exports","hljs","aliases","illegal","contains","begin","end","className","returnBegin","excludeBegin","excludeEnd","starts","relevance","subLanguage","endsWithParent"],"mappings":"oFAAAA,EAAOC,QAAU,SAASC,GAExB,MAAO,CACLC,QAAS,CAAC,SACVC,QAAS,MACTC,SAAU,CACR,CACEC,MAAO,kBAAeC,IAAK,IAC3BF,SAAU,CAAC,CAACG,UAAW,SAAUF,MAAO,kBAE1C,CACEA,MAAO,gCAAkCG,aAAa,EAAMF,IAAK,IACjEF,SAAU,CACR,CACEG,UAAW,SACXF,MAAO,IAAKC,IAAK,IACjBG,cAAc,EAAMC,YAAY,GAElC,CACEL,MAlBI,kBAoBN,CACEE,UAAW,UACXF,MAAO,YAIb,CACEE,UAAW,YACXF,MAAO,OAAQC,IAAK,KAAMI,YAAY,EACtCP,QAAS,YACTQ,OAAQ,CAACL,IAAK,IAAKM,UAAW,IAEhC,CACEP,MAAO,SACPM,OAAQ,CAACE,YAAa,GAAIC,gBAAgB","file":"highlight/http.js?v=2b257bebdc9ee860db4a","sourcesContent":["module.exports = function(hljs) {\n  var VERSION = 'HTTP/[0-9\\\\.]+';\n  return {\n    aliases: ['https'],\n    illegal: '\\\\S',\n    contains: [\n      {\n        begin: '^' + VERSION, end: '$',\n        contains: [{className: 'number', begin: '\\\\b\\\\d{3}\\\\b'}]\n      },\n      {\n        begin: '^[A-Z]+ (.*?) ' + VERSION + '$', returnBegin: true, end: '$',\n        contains: [\n          {\n            className: 'string',\n            begin: ' ', end: ' ',\n            excludeBegin: true, excludeEnd: true\n          },\n          {\n            begin: VERSION\n          },\n          {\n            className: 'keyword',\n            begin: '[A-Z]+'\n          }\n        ]\n      },\n      {\n        className: 'attribute',\n        begin: '^\\\\w', end: ': ', excludeEnd: true,\n        illegal: '\\\\n|\\\\s|=',\n        starts: {end: '$', relevance: 0}\n      },\n      {\n        begin: '\\\\n\\\\n',\n        starts: {subLanguage: [], endsWithParent: true}\n      }\n    ]\n  };\n};"],"sourceRoot":""}