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
46
dashboard-ui/bower_components/prism/components/prism-twig.js
vendored
Normal file
46
dashboard-ui/bower_components/prism/components/prism-twig.js
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
Prism.languages.twig = {
|
||||
'comment': /\{#[\s\S]*?#\}/,
|
||||
'tag': {
|
||||
pattern: /\{\{[\s\S]*?\}\}|\{%[\s\S]*?%\}/,
|
||||
inside: {
|
||||
'ld': {
|
||||
pattern: /^(?:\{\{\-?|\{%\-?\s*\w+)/,
|
||||
inside: {
|
||||
'punctuation': /^(?:\{\{|\{%)\-?/,
|
||||
'keyword': /\w+/
|
||||
}
|
||||
},
|
||||
'rd': {
|
||||
pattern: /\-?(?:%\}|\}\})$/,
|
||||
inside: {
|
||||
'punctuation': /.*/
|
||||
}
|
||||
},
|
||||
'string': {
|
||||
pattern: /("|')(?:\\?.)*?\1/,
|
||||
inside: {
|
||||
'punctuation': /^['"]|['"]$/
|
||||
}
|
||||
},
|
||||
'keyword': /\b(?:even|if|odd)\b/,
|
||||
'boolean': /\b(?:true|false|null)\b/,
|
||||
'number': /\b-?(?:0x[\dA-Fa-f]+|\d*\.?\d+([Ee][-+]?\d+)?)\b/,
|
||||
'operator': [
|
||||
{
|
||||
pattern: /(\s)(?:and|b\-and|b\-xor|b\-or|ends with|in|is|matches|not|or|same as|starts with)(?=\s)/,
|
||||
lookbehind: true
|
||||
},
|
||||
/[=<>]=?|!=|\*\*?|\/\/?|\?:?|[-+~%|]/
|
||||
],
|
||||
'property': /\b[a-zA-Z_][a-zA-Z0-9_]*\b/,
|
||||
'punctuation': /[()\[\]{}:.,]/
|
||||
}
|
||||
},
|
||||
|
||||
// The rest can be parsed as HTML
|
||||
'other': {
|
||||
// We want non-blank matches
|
||||
pattern: /\S(?:[\s\S]*\S)?/,
|
||||
inside: Prism.languages.markup
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue