Browse Source

[Minor] Lua_magic: Improve html detection heuristic

tags/2.7
Vsevolod Stakhov 3 years ago
parent
commit
63869b7d7b
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      lualib/lua_magic/heuristics.lua

+ 7
- 0
lualib/lua_magic/heuristics.lua View File

@@ -435,10 +435,17 @@ exports.text_part_heuristic = function(part, log_obj, _)
end
end

-- Content type stuff
if (mtype == 'text' or mtype == 'application') and (msubtype == 'html' or msubtype == 'xhtml+xml') then
return 'html',21
end

-- Extension stuff
local fname = part:get_filename()
if fname and fname:match('html?$') then
return 'html',21
end

return 'txt',40
end
end

Loading…
Cancel
Save