[tex4ht-commits] [SCM] tex4ht updated: r1382 - trunk/lit

Michal Hoftich INVALID.NOREPLY at gnu.org.ua
Thu Oct 12 14:52:53 CEST 2023


Author: michal_h21
Date: 2023-10-12 12:52:53 +0000 (Thu, 12 Oct 2023)
New Revision: 1382

Modified:
   trunk/lit/ChangeLog
   trunk/lit/tex4ht-mathjax.tex
Log:
don't use deprecated expl3 functions

Modified: trunk/lit/ChangeLog
===================================================================
--- trunk/lit/ChangeLog	2023-10-09 21:22:59 UTC (rev 1381)
+++ trunk/lit/ChangeLog	2023-10-12 12:52:53 UTC (rev 1382)
@@ -1,3 +1,9 @@
+2023-10-12  Michal Hoftich  <michal.h21 at gmail.com>
+
+	* tex4ht-mathjax.tex (mathjax-latex-4ht.4ht): changed deprecated
+	\tl_set:Nx to \tl_set:Ne.
+	https://www.texdev.net/2023/10/10/get-the-jag-from-x-type-to-e-type
+
 2023-10-09  Michal Hoftich  <michal.h21 at gmail.com>
 
 	* tex4ht-4ht.tex (usepackage-fontspec.4ht): process keyval options

Modified: trunk/lit/tex4ht-mathjax.tex
===================================================================
--- trunk/lit/tex4ht-mathjax.tex	2023-10-09 21:22:59 UTC (rev 1381)
+++ trunk/lit/tex4ht-mathjax.tex	2023-10-12 12:52:53 UTC (rev 1382)
@@ -59,7 +59,7 @@
 \ExplSyntaxOn
 \cs_new_protected:Npn \alteqtoks #1
 {
-  \tl_set:Nx \l_tmpa_tl {\detokenize{#1}}
+  \tl_set:Ne \l_tmpa_tl {\detokenize{#1}}
   % % replace < > and & with xml entities
   \regex_replace_all:nnN { \x{26} } { & } \l_tmpa_tl
   \regex_replace_all:nnN { \x{3C} } { < } \l_tmpa_tl 
@@ -66,7 +66,7 @@
   \regex_replace_all:nnN { \x{3E} } { > } \l_tmpa_tl
   % replace \par command with blank lines
   \regex_replace_all:nnN { \x{5C}par\b } {\x{A}\x{A}} \l_tmpa_tl
-  \tl_set:Nx \l_tmpb_tl{ \l_tmpa_tl }
+  \tl_set:Ne \l_tmpb_tl{ \l_tmpa_tl }
   \HCode{\l_tmpb_tl}
 }
 \ExplSyntaxOff



More information about the tex4ht-commits mailing list.