@Override
protected void doRender(TemplateRenderContext renderContext) throws TemplateExecutionException, IOException {
StringWriter buffer = new StringWriter();
mustache.execute(buffer, new Object[]{new ContextMap(renderContext)});
Stream stream = renderContext.getPrinter();
stream.provide(Chunk.create(buffer.getBuffer()));
}
}