Files
skills-here-run-place/node_modules/prismjs/plugins/highlight-keywords/prism-highlight-keywords.js
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

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);
});
}());