mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 13:58:13 +08:00
40 lines
998 B
JavaScript
40 lines
998 B
JavaScript
import {
|
|
__commonJS
|
|
} from "./chunk-2TUXWMP5.js";
|
|
|
|
// node_modules/refractor/lang/yang.js
|
|
var require_yang = __commonJS({
|
|
"node_modules/refractor/lang/yang.js"(exports, module) {
|
|
module.exports = yang;
|
|
yang.displayName = "yang";
|
|
yang.aliases = [];
|
|
function yang(Prism) {
|
|
Prism.languages.yang = {
|
|
// https://tools.ietf.org/html/rfc6020#page-34
|
|
// http://www.yang-central.org/twiki/bin/view/Main/YangExamples
|
|
comment: /\/\*[\s\S]*?\*\/|\/\/.*/,
|
|
string: {
|
|
pattern: /"(?:[^\\"]|\\.)*"|'[^']*'/,
|
|
greedy: true
|
|
},
|
|
keyword: {
|
|
pattern: /(^|[{};\r\n][ \t]*)[a-z_][\w.-]*/i,
|
|
lookbehind: true
|
|
},
|
|
namespace: {
|
|
pattern: /(\s)[a-z_][\w.-]*(?=:)/i,
|
|
lookbehind: true
|
|
},
|
|
boolean: /\b(?:false|true)\b/,
|
|
operator: /\+/,
|
|
punctuation: /[{};:]/
|
|
};
|
|
}
|
|
}
|
|
});
|
|
|
|
export {
|
|
require_yang
|
|
};
|
|
//# sourceMappingURL=chunk-F52J34YB.js.map
|