jellyfin-web/dashboard-ui/bower_components/prism/plugins/highlight-keywords/prism-highlight-keywords.js

18 lines
270 B
JavaScript
Raw Normal View History

2016-02-03 16:00:01 -07:00
(function(){
if (
typeof self !== 'undefined' && !self.Prism ||
typeof global !== 'undefined' && !global.Prism
) {
return;
}
Prism.hooks.add('wrap', function(env) {
if (env.type !== "keyword") {
return;
}
env.classes.push('keyword-' + env.content);
});
})();