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

gherkin.js.map « highlight « js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65c59deda2ae44fd82d43f7f709c5d5de4ebf219 (plain)
1
{"version":3,"sources":["webpack:///./node_modules/highlight.js/lib/languages/gherkin.js"],"names":["module","exports","hljs","name","aliases","keywords","contains","className","begin","relevance","end","HASH_COMMENT_MODE","QUOTE_STRING_MODE"],"mappings":"mGAgDAA,EAAOC,QAzCP,SAAiBC,GACf,MAAO,CACLC,KAAM,UACNC,QAAS,CAAC,WACVC,SAAU,kIACVC,SAAU,CACR,CACEC,UAAW,SACXC,MAAO,MACPC,UAAW,GAEb,CACEF,UAAW,OACXC,MAAO,aAET,CACEA,MAAO,MACPE,IAAK,WACLJ,SAAU,CACR,CACEC,UAAW,SACXC,MAAO,WAIb,CACED,UAAW,WACXC,MAAO,IACPE,IAAK,KAEPR,EAAKS,kBACL,CACEJ,UAAW,SACXC,MAAO,MACPE,IAAK,OAEPR,EAAKU","file":"highlight/gherkin.js?v=a37fc2fdfad1d97ce57b","sourcesContent":["/*\n Language: Gherkin\n Author: Sam Pikesley (@pikesley) <sam.pikesley@theodi.org>\n Description: Gherkin is the format for cucumber specifications. It is a domain specific language which helps you to describe business behavior without the need to go into detail of implementation.\n Website: https://cucumber.io/docs/gherkin/\n */\n\nfunction gherkin(hljs) {\n  return {\n    name: 'Gherkin',\n    aliases: ['feature'],\n    keywords: 'Feature Background Ability Business\\ Need Scenario Scenarios Scenario\\ Outline Scenario\\ Template Examples Given And Then But When',\n    contains: [\n      {\n        className: 'symbol',\n        begin: '\\\\*',\n        relevance: 0\n      },\n      {\n        className: 'meta',\n        begin: '@[^@\\\\s]+'\n      },\n      {\n        begin: '\\\\|',\n        end: '\\\\|\\\\w*$',\n        contains: [\n          {\n            className: 'string',\n            begin: '[^|]+'\n          }\n        ]\n      },\n      {\n        className: 'variable',\n        begin: '<',\n        end: '>'\n      },\n      hljs.HASH_COMMENT_MODE,\n      {\n        className: 'string',\n        begin: '\"\"\"',\n        end: '\"\"\"'\n      },\n      hljs.QUOTE_STRING_MODE\n    ]\n  };\n}\n\nmodule.exports = gherkin;\n"],"sourceRoot":""}