summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2024-10-22 20:39:49 +0000
committerKarl Berry <karl@freefriends.org>2024-10-22 20:39:49 +0000
commit8d8156702670a523f0e70037487dab1f89ff7337 (patch)
treef0127d946bdd122c7bb1a2a684d5157e63c647ff /Master/texmf-dist/scripts
parenta4498e8c03238c0bd9c5b40cf4c53f20af907a29 (diff)
make4ht (22oct24)
git-svn-id: svn://tug.org/texlive/trunk@72626 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rw-r--r--Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua2
-rwxr-xr-xMaster/texmf-dist/scripts/make4ht/make4ht2
2 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua b/Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua
index e0e196af2d9..18d27b6b094 100644
--- a/Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua
+++ b/Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua
@@ -89,7 +89,7 @@ return function(dom)
if is_empty_row(row) and is_not_styled(row, css) then row:remove_node() end
hline_hr(row)
end
- if tbl:get_attribute("class"):match("longtable") then
+ if tbl:get_attribute("class") and tbl:get_attribute("class"):match("longtable") then
longrable_last_row(tbl)
end
end
diff --git a/Master/texmf-dist/scripts/make4ht/make4ht b/Master/texmf-dist/scripts/make4ht/make4ht
index d3ed3bba729..d9f7034bad9 100755
--- a/Master/texmf-dist/scripts/make4ht/make4ht
+++ b/Master/texmf-dist/scripts/make4ht/make4ht
@@ -29,7 +29,7 @@ make4ht [options] filename ["tex4ht.sty op." "tex4ht op." "t4ht op" "latex op"]
-- set version number. the template should be replaced by the
-- actual version number by the build script
-local version = "v0.4a"
+local version = "v0.4b"
mkparams.version_number = version
local args = mkparams.get_args()