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
2a4b879c21
commit
63664e6c1c
1155 changed files with 62261 additions and 84 deletions
19
dashboard-ui/bower_components/prism/components/prism-r.js
vendored
Normal file
19
dashboard-ui/bower_components/prism/components/prism-r.js
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
Prism.languages.r = {
|
||||
'comment': /#.*/,
|
||||
'string': /(['"])(?:\\?.)*?\1/,
|
||||
'percent-operator': {
|
||||
// Includes user-defined operators
|
||||
// and %%, %*%, %/%, %in%, %o%, %x%
|
||||
pattern: /%[^%\s]*%/,
|
||||
alias: 'operator'
|
||||
},
|
||||
'boolean': /\b(?:TRUE|FALSE)\b/,
|
||||
'ellipsis': /\.\.(?:\.|\d+)/,
|
||||
'number': [
|
||||
/\b(?:NaN|Inf)\b/,
|
||||
/\b(?:0x[\dA-Fa-f]+(?:\.\d*)?|\d*\.?\d+)(?:[EePp][+-]?\d+)?[iL]?\b/
|
||||
],
|
||||
'keyword': /\b(?:if|else|repeat|while|function|for|in|next|break|NULL|NA|NA_integer_|NA_real_|NA_complex_|NA_character_)\b/,
|
||||
'operator': /->?>?|<(?:=|<?-)?|[>=!]=?|::?|&&?|\|\|?|[+*\/^$@~]/,
|
||||
'punctuation': /[(){}\[\],;]/
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue