public void testLiveHtmls() throws IOException {
FindFile ff = new WildcardFindFile().include("**/*.html");
ff.searchPath(testLiveRoot);
File file;
boolean processed = false;
while ((file = ff.nextFile()) != null) {
processed = true;
String name = file.getName();
System.out.println('+' + name);
String content = FileUtil.readString(file);
try {