/* global hexo */ hexo.extend.filter.register('after_render:html', function (str) { const warningMessage = `

⚠️ You're browsing the documentation for an old version of Meteor.js. Check out the v3 docs and migration guide.

`; const css = ` `; const injectedContent = css + warningMessage; return str.replace(/
/, `
${injectedContent}`); });