mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 22:08:16 +08:00
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
import {
|
|
__commonJS
|
|
} from "./chunk-2TUXWMP5.js";
|
|
|
|
// node_modules/highlight.js/lib/languages/gherkin.js
|
|
var require_gherkin = __commonJS({
|
|
"node_modules/highlight.js/lib/languages/gherkin.js"(exports, module) {
|
|
function gherkin(hljs) {
|
|
return {
|
|
name: "Gherkin",
|
|
aliases: ["feature"],
|
|
keywords: "Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When",
|
|
contains: [
|
|
{
|
|
className: "symbol",
|
|
begin: "\\*",
|
|
relevance: 0
|
|
},
|
|
{
|
|
className: "meta",
|
|
begin: "@[^@\\s]+"
|
|
},
|
|
{
|
|
begin: "\\|",
|
|
end: "\\|\\w*$",
|
|
contains: [
|
|
{
|
|
className: "string",
|
|
begin: "[^|]+"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
className: "variable",
|
|
begin: "<",
|
|
end: ">"
|
|
},
|
|
hljs.HASH_COMMENT_MODE,
|
|
{
|
|
className: "string",
|
|
begin: '"""',
|
|
end: '"""'
|
|
},
|
|
hljs.QUOTE_STRING_MODE
|
|
]
|
|
};
|
|
}
|
|
module.exports = gherkin;
|
|
}
|
|
});
|
|
|
|
export {
|
|
require_gherkin
|
|
};
|
|
//# sourceMappingURL=chunk-4OD3ADAX.js.map
|