const { Liquid } = require('liquidjs') const engine = new Liquid({ root: __dirname, extname: '.liquid' }) engine.registerTag('header', { parse: function (token) { const [key, val] = token.args.split(':') this[key] = val }, render: async function (scope, emitter) { const title = await this.liquid.evalValue(this.content, scope) emitter.write(`