JS: Extract .hbs and .ejs as HTML

This commit is contained in:
Asger Feldthaus
2021-07-14 17:53:13 +02:00
parent e678c16d59
commit 96a2c3f2db

View File

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