mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
59ea1c2f7d
commit
cf577ba8eb
1136 changed files with 59263 additions and 576 deletions
27
dashboard-ui/bower_components/prism/components/prism-jsx.js
vendored
Normal file
27
dashboard-ui/bower_components/prism/components/prism-jsx.js
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
(function(Prism) {
|
||||
|
||||
var javascript = Prism.util.clone(Prism.languages.javascript);
|
||||
|
||||
Prism.languages.jsx = Prism.languages.extend('markup', javascript);
|
||||
Prism.languages.jsx.tag.pattern= /<\/?[\w\.:-]+\s*(?:\s+[\w\.:-]+(?:=(?:("|')(\\?[\w\W])*?\1|[^\s'">=]+|(\{[\w\W]*?\})))?\s*)*\/?>/i;
|
||||
|
||||
Prism.languages.jsx.tag.inside['attr-value'].pattern = /=[^\{](?:('|")[\w\W]*?(\1)|[^\s>]+)/i;
|
||||
|
||||
var jsxExpression = Prism.util.clone(Prism.languages.jsx);
|
||||
|
||||
delete jsxExpression.punctuation
|
||||
|
||||
jsxExpression = Prism.languages.insertBefore('jsx', 'operator', {
|
||||
'punctuation': /=(?={)|[{}[\];(),.:]/
|
||||
}, { jsx: jsxExpression });
|
||||
|
||||
Prism.languages.insertBefore('inside', 'attr-value',{
|
||||
'script': {
|
||||
// Allow for one level of nesting
|
||||
pattern: /=(\{(?:\{[^}]*\}|[^}])+\})/i,
|
||||
inside: jsxExpression,
|
||||
'alias': 'language-javascript'
|
||||
}
|
||||
}, Prism.languages.jsx.tag);
|
||||
|
||||
}(Prism));
|
Loading…
Add table
Add a link
Reference in a new issue