update components
This commit is contained in:
parent
59ea1c2f7d
commit
cf577ba8eb
1136 changed files with 59263 additions and 576 deletions
13
dashboard-ui/bower_components/prism/tests/languages/ini/comment_feature.test
vendored
Normal file
13
dashboard-ui/bower_components/prism/tests/languages/ini/comment_feature.test
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
;
|
||||
; foobar
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["comment", ";"],
|
||||
["comment", "; foobar"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for comments.
|
13
dashboard-ui/bower_components/prism/tests/languages/ini/important_feature.test
vendored
Normal file
13
dashboard-ui/bower_components/prism/tests/languages/ini/important_feature.test
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
[owner]
|
||||
[foobar]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["important", "[owner]"],
|
||||
["important", "[foobar]"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for section titles.
|
21
dashboard-ui/bower_components/prism/tests/languages/ini/key_value_feature.test
vendored
Normal file
21
dashboard-ui/bower_components/prism/tests/languages/ini/key_value_feature.test
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
foo=Bar Baz
|
||||
foobar=42
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["constant", "foo"],
|
||||
["attr-value", [
|
||||
["punctuation", "="],
|
||||
"Bar Baz"
|
||||
]],
|
||||
["constant", "foobar"],
|
||||
["attr-value", [
|
||||
["punctuation", "="],
|
||||
"42"
|
||||
]]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for key/value pairs.
|
Loading…
Add table
Add a link
Reference in a new issue