lib/plugins/helper/render.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type Hexo from '../../hexo';

export = (ctx: Hexo) => function render(text: string, engine: string, options:object = {}) {
  return ctx.render.renderSync({
    text,
    engine
  }, options);
};