*/
public void render() throws IOException {
final HTMLDocument doc = new HTMLDocument(
folder.createFile(getFileName()), context.getOutputEncoding());
head(doc.head());
body(doc.body());
doc.close();
}
private void head(final HTMLElement head) throws IOException {
head.meta("Content-Type", "text/html;charset=UTF-8");