hexo-theme-icarus/scripts/hotjar.js

11 lines
366 B
JavaScript
Raw Normal View History

2018-10-28 05:30:33 +00:00
const cheerio = require('cheerio');
function fixStyle(content) {
const $ = cheerio.load(content, { decodeEntities: false });
$('body').append(`<style>#_hj_feedback_container *:after {box-shadow: none !important;}</style>`);
2018-10-28 05:30:33 +00:00
return $.html();
}
hexo.extend.filter.register('after_render:html', function (content, data) {
return fixStyle(content);
});