1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-05-02 13:34:06 -04:00
parent 3f0cecbf02
commit 06ade66d61
881 changed files with 676 additions and 47086 deletions

View file

@ -12,6 +12,7 @@ Prism.languages.powershell = {
'string': [
{
pattern: /"(`?[\w\W])*?"/,
greedy: true,
inside: {
'function': {
pattern: /[^`]\$\(.*?\)/,
@ -20,7 +21,10 @@ Prism.languages.powershell = {
}
}
},
/'([^']|'')*'/
{
pattern: /'([^']|'')*'/,
greedy: true
}
],
// Matches name spaces as well as casts, attribute decorators. Force starting with letter to avoid matching array indices
'namespace': /\[[a-z][\w\W]*?\]/i,