mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 06:09:30 +08:00
20 lines
492 B
Text
20 lines
492 B
Text
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': /[{};:]/
|
|
};
|