We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bff31d commit 87c602eCopy full SHA for 87c602e
src/core/render/index.js
@@ -321,15 +321,15 @@ export function Render(Base) {
321
);
322
}
323
324
- this.callHook('afterEach', html, hookData =>
325
- renderMain.call(this, hookData)
326
- );
+ this.callHook('afterEach', html, hookData => {
+ renderMain.call(this, hookData);
+ next();
327
+ });
328
};
329
330
if (this.isHTML) {
331
html = this.result = text;
332
callback();
- next();
333
} else {
334
prerenderEmbed(
335
{
@@ -339,7 +339,6 @@ export function Render(Base) {
339
tokens => {
340
html = this.compiler.compile(tokens);
341
342
343
344
345
0 commit comments