mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
15 lines
214 B
JavaScript
15 lines
214 B
JavaScript
(function () {
|
|
|
|
if (typeof Prism === 'undefined') {
|
|
return;
|
|
}
|
|
|
|
Prism.hooks.add('wrap', function (env) {
|
|
if (env.type !== 'keyword') {
|
|
return;
|
|
}
|
|
env.classes.push('keyword-' + env.content);
|
|
});
|
|
|
|
}());
|