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
41
dashboard-ui/bower_components/prism/components/prism-erlang.js
vendored
Normal file
41
dashboard-ui/bower_components/prism/components/prism-erlang.js
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
Prism.languages.erlang = {
|
||||
'comment': /%.+/,
|
||||
'string': /"(?:\\?.)*?"/,
|
||||
'quoted-function': {
|
||||
pattern: /'(?:\\.|[^'\\])+'(?=\()/,
|
||||
alias: 'function'
|
||||
},
|
||||
'quoted-atom': {
|
||||
pattern: /'(?:\\.|[^'\\])+'/,
|
||||
alias: 'atom'
|
||||
},
|
||||
'boolean': /\b(?:true|false)\b/,
|
||||
'keyword': /\b(?:fun|when|case|of|end|if|receive|after|try|catch)\b/,
|
||||
'number': [
|
||||
/\$\\?./,
|
||||
/\d+#[a-z0-9]+/i,
|
||||
/(?:\b|-)\d*\.?\d+([Ee][+-]?\d+)?\b/
|
||||
],
|
||||
'function': /\b[a-z][\w@]*(?=\()/,
|
||||
'variable': {
|
||||
// Look-behind is used to prevent wrong highlighting of atoms containing "@"
|
||||
pattern: /(^|[^@])(?:\b|\?)[A-Z_][\w@]*/,
|
||||
lookbehind: true
|
||||
},
|
||||
'operator': [
|
||||
/[=\/<>:]=|=[:\/]=|\+\+?|--?|[=*\/!]|\b(?:bnot|div|rem|band|bor|bxor|bsl|bsr|not|and|or|xor|orelse|andalso)\b/,
|
||||
{
|
||||
// We don't want to match <<
|
||||
pattern: /(^|[^<])<(?!<)/,
|
||||
lookbehind: true
|
||||
},
|
||||
{
|
||||
// We don't want to match >>
|
||||
pattern: /(^|[^>])>(?!>)/,
|
||||
lookbehind: true
|
||||
}
|
||||
],
|
||||
'atom': /\b[a-z][\w@]*/,
|
||||
'punctuation': /[()[\]{}:;,.#|]|<<|>>/
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue