update components
This commit is contained in:
parent
59ea1c2f7d
commit
cf577ba8eb
1136 changed files with 59263 additions and 576 deletions
33
dashboard-ui/bower_components/prism/plugins/show-invisibles/prism-show-invisibles.css
vendored
Normal file
33
dashboard-ui/bower_components/prism/plugins/show-invisibles/prism-show-invisibles.css
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
.token.tab:not(:empty),
|
||||
.token.cr,
|
||||
.token.lf,
|
||||
.token.space {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.token.tab:not(:empty):before,
|
||||
.token.cr:before,
|
||||
.token.lf:before,
|
||||
.token.space:before {
|
||||
color: hsl(24, 20%, 85%);
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.token.tab:not(:empty):before {
|
||||
content: '\21E5';
|
||||
}
|
||||
|
||||
.token.cr:before {
|
||||
content: '\240D';
|
||||
}
|
||||
|
||||
.token.crlf:before {
|
||||
content: '\240D\240A';
|
||||
}
|
||||
.token.lf:before {
|
||||
content: '\240A';
|
||||
}
|
||||
|
||||
.token.space:before {
|
||||
content: '\00B7';
|
||||
}
|
19
dashboard-ui/bower_components/prism/plugins/show-invisibles/prism-show-invisibles.js
vendored
Normal file
19
dashboard-ui/bower_components/prism/plugins/show-invisibles/prism-show-invisibles.js
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
(function(){
|
||||
|
||||
if (
|
||||
typeof self !== 'undefined' && !self.Prism ||
|
||||
typeof global !== 'undefined' && !global.Prism
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
Prism.hooks.add('before-highlight', function(env) {
|
||||
var tokens = env.grammar;
|
||||
|
||||
tokens.tab = /\t/g;
|
||||
tokens.crlf = /\r\n/g;
|
||||
tokens.lf = /\n/g;
|
||||
tokens.cr = /\r/g;
|
||||
tokens.space = / /g;
|
||||
});
|
||||
})();
|
1
dashboard-ui/bower_components/prism/plugins/show-invisibles/prism-show-invisibles.min.js
vendored
Normal file
1
dashboard-ui/bower_components/prism/plugins/show-invisibles/prism-show-invisibles.min.js
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
!function(){"undefined"!=typeof self&&!self.Prism||"undefined"!=typeof global&&!global.Prism||Prism.hooks.add("before-highlight",function(e){var f=e.grammar;f.tab=/\t/g,f.crlf=/\r\n/g,f.lf=/\n/g,f.cr=/\r/g,f.space=/ /g})}();
|
Loading…
Add table
Add a link
Reference in a new issue