texlive[72626] trunk: make4ht (22oct24)

commits+karl at tug.org commits+karl at tug.org
Tue Oct 22 22:39:49 CEST 2024


Revision: 72626
          https://tug.org/svn/texlive?view=revision&revision=72626
Author:   karl
Date:     2024-10-22 22:39:49 +0200 (Tue, 22 Oct 2024)
Log Message:
-----------
make4ht (22oct24)

Modified Paths:
--------------
    trunk/Build/source/texk/texlive/linked_scripts/make4ht/make4ht
    trunk/Master/texmf-dist/doc/support/make4ht/changelog.tex
    trunk/Master/texmf-dist/doc/support/make4ht/make4ht-doc.pdf
    trunk/Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua
    trunk/Master/texmf-dist/scripts/make4ht/make4ht

Modified: trunk/Build/source/texk/texlive/linked_scripts/make4ht/make4ht
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/make4ht/make4ht	2024-10-22 20:39:34 UTC (rev 72625)
+++ trunk/Build/source/texk/texlive/linked_scripts/make4ht/make4ht	2024-10-22 20:39:49 UTC (rev 72626)
@@ -29,7 +29,7 @@
 
 -- 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()

Modified: trunk/Master/texmf-dist/doc/support/make4ht/changelog.tex
===================================================================
--- trunk/Master/texmf-dist/doc/support/make4ht/changelog.tex	2024-10-22 20:39:34 UTC (rev 72625)
+++ trunk/Master/texmf-dist/doc/support/make4ht/changelog.tex	2024-10-22 20:39:49 UTC (rev 72626)
@@ -3,6 +3,17 @@
 
 \begin{itemize}
 \item
+  2024/10/22
+
+  \begin{itemize}
+  \tightlist
+  \item
+    version \texttt{0.4b} released.
+  \item
+    test for the existence of the class atribute of tables before
+    performing string matches in the \texttt{tablerows} DOM filter.
+  \end{itemize}
+\item
   2024/10/21
 
   \begin{itemize}

Modified: trunk/Master/texmf-dist/doc/support/make4ht/make4ht-doc.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua	2024-10-22 20:39:34 UTC (rev 72625)
+++ trunk/Master/texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua	2024-10-22 20:39:49 UTC (rev 72626)
@@ -89,7 +89,7 @@
       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

Modified: trunk/Master/texmf-dist/scripts/make4ht/make4ht
===================================================================
--- trunk/Master/texmf-dist/scripts/make4ht/make4ht	2024-10-22 20:39:34 UTC (rev 72625)
+++ trunk/Master/texmf-dist/scripts/make4ht/make4ht	2024-10-22 20:39:49 UTC (rev 72626)
@@ -29,7 +29,7 @@
 
 -- 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()



More information about the tex-live-commits mailing list.