if (path.startsWith(rootPath)) {
total++;
}
}
Progress progress = new Progress(total, 50);
for (String path : analyzer.getLoadedFiles()) {
if (path.startsWith(rootPath)) {
progress.tick();
File destFile = _.joinPath(OUTPUT_DIR, path.substring(rootLength));
destFile.getParentFile().mkdirs();
String destPath = destFile.getAbsolutePath() + ".html";
String html = markup(path);
try {