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
31
dashboard-ui/bower_components/prism/components/prism-sas.js
vendored
Normal file
31
dashboard-ui/bower_components/prism/components/prism-sas.js
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
Prism.languages.sas = {
|
||||
'datalines': {
|
||||
pattern: /^\s*(?:(?:data)?lines|cards);[\s\S]+?(?:\r?\n|\r);/im,
|
||||
alias: 'string',
|
||||
inside: {
|
||||
'keyword': {
|
||||
pattern: /^(\s*)(?:(?:data)?lines|cards)/i,
|
||||
lookbehind: true
|
||||
},
|
||||
'punctuation': /;/
|
||||
}
|
||||
},
|
||||
'comment': [
|
||||
{
|
||||
pattern: /(^\s*|;\s*)\*.*;/m,
|
||||
lookbehind: true
|
||||
},
|
||||
/\/\*[\s\S]+?\*\//
|
||||
],
|
||||
'datetime': {
|
||||
// '1jan2013'd, '9:25:19pm't, '18jan2003:9:27:05am'dt
|
||||
pattern: /'[^']+'(?:dt?|t)\b/i,
|
||||
alias: 'number'
|
||||
},
|
||||
'string': /(["'])(?:\1\1|(?!\1)[\s\S])*\1/,
|
||||
'keyword': /\b(?:data|else|format|if|input|proc|run|then)\b/i,
|
||||
// Decimal (1.2e23), hexadecimal (0c1x)
|
||||
'number': /(?:\B-|\b)(?:[\da-f]+x|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,
|
||||
'operator': /\*\*?|\|\|?|!!?|¦¦?|<[>=]?|>[<=]?|[-+\/=&]|[~¬^]=?|\b(?:eq|ne|gt|lt|ge|le|in|not)\b/i,
|
||||
'punctuation': /[$%@.(){}\[\];,\\]/
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue