summaryrefslogtreecommitdiff
path: root/support/make4ht/make4ht-errorlogparser.lua
diff options
context:
space:
mode:
Diffstat (limited to 'support/make4ht/make4ht-errorlogparser.lua')
-rw-r--r--support/make4ht/make4ht-errorlogparser.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/support/make4ht/make4ht-errorlogparser.lua b/support/make4ht/make4ht-errorlogparser.lua
index e536370ac9..1d16c97650 100644
--- a/support/make4ht/make4ht-errorlogparser.lua
+++ b/support/make4ht/make4ht-errorlogparser.lua
@@ -81,6 +81,28 @@ local function get_errors(chunks, errors)
return errors
end
+function m.get_missing_4ht_files(log)
+ local used_files = {}
+ local used_4ht_files = {}
+ local missing_4ht_files = {}
+ local pkg_names = {sty=true, cls=true}
+ for filename, ext in log:gmatch("[^%s]-([^%/^%\\^%.%s]+)%.([%w][%w]+)") do
+ -- break ak
+ if ext == "aux" then break end
+ if pkg_names[ext] then
+ used_files[filename .. "." .. ext] = true
+ elseif ext == "4ht" then
+ used_4ht_files[filename] = true
+ end
+ end
+ for filename, _ in pairs(used_files) do
+ if not used_4ht_files[mkutils.remove_extension(filename)] then
+ table.insert(missing_4ht_files, filename)
+ end
+ end
+ return missing_4ht_files
+end
+
function m.parse(log)
local chunks, newtext = get_chunks(log)