mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
8 lines
231 B
JavaScript
8 lines
231 B
JavaScript
Prism.languages.jsonp = Prism.languages.extend('json', {
|
|
'punctuation': /[{}[\]();,.]/
|
|
});
|
|
|
|
Prism.languages.insertBefore('jsonp', 'punctuation', {
|
|
'function': /(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*\()/
|
|
});
|