InputStreamReader reader = new InputStreamReader(url.openStream(),
Charset.forName("UTF-8"));
Mustache mustache = getMustacheFactory().compile(reader,
templatePath);
mustache.execute(writer, outputTemplate).flush();
writer.close();
LOG.info("Done!");
} catch (MalformedURLException e) {
throw new GenerateException(e);
} catch (IOException e) {