mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
20 lines
299 B
JavaScript
20 lines
299 B
JavaScript
Prism.languages.brainfuck = {
|
|
'pointer': {
|
|
pattern: /<|>/,
|
|
alias: 'keyword'
|
|
},
|
|
'increment': {
|
|
pattern: /\+/,
|
|
alias: 'inserted'
|
|
},
|
|
'decrement': {
|
|
pattern: /-/,
|
|
alias: 'deleted'
|
|
},
|
|
'branching': {
|
|
pattern: /\[|\]/,
|
|
alias: 'important'
|
|
},
|
|
'operator': /[.,]/,
|
|
'comment': /\S+/
|
|
}; |