Skip to content

Commit ed1df1e

Browse files
Added support for YANG (#2467)
1 parent 447429f commit ed1df1e

12 files changed

+198
-3
lines changed

components.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components.json

+4
Original file line numberDiff line numberDiff line change
@@ -1212,6 +1212,10 @@
12121212
"alias": "yml",
12131213
"owner": "hason"
12141214
},
1215+
"yang": {
1216+
"title": "YANG",
1217+
"owner": "RunDevelopment"
1218+
},
12151219
"zig": {
12161220
"title": "Zig",
12171221
"owner": "RunDevelopment"

components/prism-yang.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Prism.languages.yang = {
2+
// https://tools.ietf.org/html/rfc6020#page-34
3+
// http://www.yang-central.org/twiki/bin/view/Main/YangExamples
4+
'comment': /\/\*[\s\S]*?\*\/|\/\/.*/,
5+
'string': {
6+
pattern: /"(?:[^\\"]|\\.)*"|'[^']*'/,
7+
greedy: true
8+
},
9+
'keyword': {
10+
pattern: /(^|[{};\r\n][ \t]*)[a-z_][\w.-]*/i,
11+
lookbehind: true
12+
},
13+
'namespace': {
14+
pattern: /(\s)[a-z_][\w.-]*(?=:)/i,
15+
lookbehind: true
16+
},
17+
'boolean': /\b(?:false|true)\b/,
18+
'operator': /\+/,
19+
'punctuation': /[{};:]/
20+
};

components/prism-yang.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/prism-yang.html

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<h2>Full example</h2>
2+
<p><a href="http://www.yang-central.org/twiki/bin/view/Main/YangExamplesExecdDns">Source</a></p>
3+
<pre><code>submodule execd-dns {
4+
5+
belongs-to execd { prefix execd; }
6+
7+
import inet-types { prefix inet; }
8+
9+
include execd-types;
10+
11+
description
12+
"The 'dns' component provides support for configuring the DNS resolver.
13+
14+
The 'domain' keyword of /etc/resolv.conf is not supported, since
15+
it is equivalent to 'search' with a single domain. I.e. in terms
16+
of the data model, the domains are always configured as 'search'
17+
elements, even if there is only one. The set of available options
18+
has been limited to those that are generally available across
19+
different resolver implementations, and generally useful.";
20+
21+
revision "2008-11-04" {
22+
description "draft-ietf-netmod-yang-02 compatible.";
23+
}
24+
revision "2007-08-29" {
25+
description "Syntax fixes after pyang validation.";
26+
}
27+
revision "2007-06-08" {
28+
description "Initial revision.";
29+
}
30+
31+
grouping dns {
32+
list search {
33+
key name;
34+
max-elements 3;
35+
leaf name { type int32; }
36+
leaf domain { type inet:host; }
37+
}
38+
list server {
39+
key address;
40+
max-elements 3;
41+
ordered-by user;
42+
leaf address { type inet:ip-address; }
43+
}
44+
container options {
45+
leaf ndots { type uint8; }
46+
leaf timeout { type uint8; }
47+
leaf attempts { type uint8; }
48+
}
49+
}
50+
}</code></pre>

plugins/show-language/prism-show-language.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,8 @@
195195
"xojo": "Xojo (REALbasic)",
196196
"xquery": "XQuery",
197197
"yaml": "YAML",
198-
"yml": "YAML"
198+
"yml": "YAML",
199+
"yang": "YANG"
199200
}/*]*/;
200201

201202
Prism.plugins.toolbar.registerButton('show-language', function (env) {

plugins/show-language/prism-show-language.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
true
2+
false
3+
4+
----------------------------------------------------
5+
6+
[
7+
["keyword", "true"],
8+
["keyword", "false"]
9+
]
10+
11+
----------------------------------------------------
12+
13+
Checks for booleans.
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// comment
2+
/*
3+
comment
4+
*/
5+
6+
----------------------------------------------------
7+
8+
[
9+
["comment", "// comment"],
10+
["comment", "/*\n comment\n*/"]
11+
]
12+
13+
----------------------------------------------------
14+
15+
Checks for comments.
+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
submodule execd-ntp {
2+
3+
key name;
4+
5+
leaf stratum { type ntpStratum; default 10; }
6+
7+
leaf version { type int8 { range "1..4"; } default 4; }
8+
9+
}
10+
11+
----------------------------------------------------
12+
13+
[
14+
["keyword", "submodule"],
15+
" execd-ntp ",
16+
["punctuation", "{"],
17+
18+
["keyword", "key"],
19+
" name",
20+
["punctuation", ";"],
21+
22+
["keyword", "leaf"],
23+
" stratum ",
24+
["punctuation", "{"],
25+
["keyword", "type"],
26+
" ntpStratum",
27+
["punctuation", ";"],
28+
["keyword", "default"],
29+
" 10",
30+
["punctuation", ";"],
31+
["punctuation", "}"],
32+
33+
["keyword", "leaf"],
34+
" version ",
35+
["punctuation", "{"],
36+
["keyword", "type"],
37+
" int8 ",
38+
["punctuation", "{"],
39+
["keyword", "range"],
40+
["string", "\"1..4\""],
41+
["punctuation", ";"],
42+
["punctuation", "}"],
43+
["keyword", "default"],
44+
" 4",
45+
["punctuation", ";"],
46+
["punctuation", "}"],
47+
48+
["punctuation", "}"]
49+
]
50+
51+
----------------------------------------------------
52+
53+
Checks for keywords.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
type foo:type
2+
type _foo.-bar:type
3+
4+
----------------------------------------------------
5+
6+
[
7+
["keyword", "type"],
8+
["namespace", "foo"],
9+
["punctuation", ":"],
10+
"type\n",
11+
["keyword", "type"],
12+
["namespace", "_foo.-bar"],
13+
["punctuation", ":"],
14+
"type"
15+
]
16+
17+
----------------------------------------------------
18+
19+
Checks for namespace prefixes.
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
"
2+
3+
\"'foo'\"
4+
5+
"
6+
'fo
7+
""
8+
o'
9+
10+
----------------------------------------------------
11+
12+
[
13+
["string", "\"\n\n\\\"'foo'\\\"\n\n\""],
14+
["string", "'fo\n\"\"\no'"]
15+
]
16+
17+
----------------------------------------------------
18+
19+
Checks for string.

0 commit comments

Comments
 (0)