Search for html.dot extension instead of dot

This commit is contained in:
Kevin Stubbings
2023-08-04 00:55:51 -07:00
parent f1f3d8e18a
commit 9f4389cbb5
2 changed files with 1 additions and 1 deletions

View File

@@ -103,7 +103,7 @@ public class FileExtractor {
/** Information about supported file types. */
public static enum FileType {
HTML(".htm", ".html", ".xhtm", ".xhtml", ".vue", ".hbs", ".ejs", ".njk", ".erb", ".dot") {
HTML(".htm", ".html", ".xhtm", ".xhtml", ".vue", ".hbs", ".ejs", ".njk", ".erb", ".html.dot") {
@Override
public IExtractor mkExtractor(ExtractorConfig config, ExtractorState state) {
return new HTMLExtractor(config, state);