mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 07:11:53 +08:00
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
import {
|
|
__commonJS
|
|
} from "./chunk-2TUXWMP5.js";
|
|
|
|
// node_modules/highlight.js/lib/languages/leaf.js
|
|
var require_leaf = __commonJS({
|
|
"node_modules/highlight.js/lib/languages/leaf.js"(exports, module) {
|
|
function leaf(hljs) {
|
|
return {
|
|
name: "Leaf",
|
|
contains: [
|
|
{
|
|
className: "function",
|
|
begin: "#+[A-Za-z_0-9]*\\(",
|
|
end: / \{/,
|
|
returnBegin: true,
|
|
excludeEnd: true,
|
|
contains: [
|
|
{
|
|
className: "keyword",
|
|
begin: "#+"
|
|
},
|
|
{
|
|
className: "title",
|
|
begin: "[A-Za-z_][A-Za-z_0-9]*"
|
|
},
|
|
{
|
|
className: "params",
|
|
begin: "\\(",
|
|
end: "\\)",
|
|
endsParent: true,
|
|
contains: [
|
|
{
|
|
className: "string",
|
|
begin: '"',
|
|
end: '"'
|
|
},
|
|
{
|
|
className: "variable",
|
|
begin: "[A-Za-z_][A-Za-z_0-9]*"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|
|
}
|
|
module.exports = leaf;
|
|
}
|
|
});
|
|
|
|
export {
|
|
require_leaf
|
|
};
|
|
//# sourceMappingURL=chunk-WQ44E3TS.js.map
|