summaryrefslogtreecommitdiff
path: root/support/TeX4ht
diff options
context:
space:
mode:
Diffstat (limited to 'support/TeX4ht')
-rw-r--r--support/TeX4ht/source/ChangeLog6
-rw-r--r--support/TeX4ht/source/tex4ht-4ht.tex13
-rw-r--r--support/TeX4ht/source/tex4ht-html4.tex24
3 files changed, 41 insertions, 2 deletions
diff --git a/support/TeX4ht/source/ChangeLog b/support/TeX4ht/source/ChangeLog
index c7de072894..669da6deb7 100644
--- a/support/TeX4ht/source/ChangeLog
+++ b/support/TeX4ht/source/ChangeLog
@@ -1,3 +1,9 @@
+2021-08-22 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-4ht.tex (siunitx.4ht),
+ * tex4ht-html4.tex (html4.4ht): fixed MathJax support for Siunitx.
+ https://github.com/josephwright/siunitx/issues/530
+
2021-08-14 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-4ht.tex (biblatex.4ht): don't check for Hyperref when we define
diff --git a/support/TeX4ht/source/tex4ht-4ht.tex b/support/TeX4ht/source/tex4ht-4ht.tex
index daac99a89e..f4481f9798 100644
--- a/support/TeX4ht/source/tex4ht-4ht.tex
+++ b/support/TeX4ht/source/tex4ht-4ht.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-4ht.tex 973 2021-08-14 10:42:30Z michal_h21 $
+% $Id: tex4ht-4ht.tex 974 2021-08-22 16:06:00Z michal_h21 $
% tex tex4ht-4ht or ht tex tex4ht-4ht
%
% Copyright 2009-2021 TeX Users Group
@@ -28631,6 +28631,17 @@ What \Verb+\put@line+ of the 08 version does?
{\ensuremath {\SI@fstyle {\no@qsk \ensuremath {\sp{\circ }}}}}
>>>
+%%%%%%%%%%%%%%%
+\Section{Siunitx}
+
+\<siunitx.4ht\><<<
+% siunitx.4ht (|version), generated from |jobname.tex
+% Copyright 2021 TeX Users Group
+|<TeX4ht license text|>
+\Hinput{siunitx}
+\endinput
+>>> \AddFile{9}{siunitx}
+
%%%%%%%%%%%%%
\Section{Ushort}
%%%%%%%%%%%%%
diff --git a/support/TeX4ht/source/tex4ht-html4.tex b/support/TeX4ht/source/tex4ht-html4.tex
index 035e5ea0ec..8b651b1717 100644
--- a/support/TeX4ht/source/tex4ht-html4.tex
+++ b/support/TeX4ht/source/tex4ht-html4.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-html4.tex 957 2021-06-20 21:36:38Z michal_h21 $
+% $Id: tex4ht-html4.tex 974 2021-08-22 16:06:00Z michal_h21 $
% Compile 4 times: latex tex4ht-html4
% Copy html4.4ht into the work directory before all but the last compilation.
%
@@ -21401,7 +21401,29 @@ users redefine the latter macro.
>>>
+%%%%%%%%%%%%%%%%%%%%
+\section{siunitx}
+%%%%%%%%%%%%%%%%%%%%
+\<configure html4 siunitx\><<<
+\ExplSyntaxOn
+\ifdefined\fixmathjaxtoc
+\AtBeginDocument{%
+\cs_gset_protected:Npn \__siunitx_print_math_auxii:n #1
+ {
+ \tl_set:Nn \l__siunitx_print_tmp_tl {#1}
+ \exp_args:NNnx \tl_replace_all:Nnn \l__siunitx_print_tmp_tl
+ { ^ } { \token_to_str:N ^ }
+ % escape special HTML characters
+ \regex_replace_all:nnN { \x{26} } { &amp; } \l__siunitx_print_tmp_tl
+ \regex_replace_all:nnN { \x{3C} } { &lt; } \l__siunitx_print_tmp_tl
+ \regex_replace_all:nnN { \x{3E} } { &gt; } \l__siunitx_print_tmp_tl
+ \HCode{\detokenize{\(} \tl_to_str:N \l__siunitx_print_tmp_tl \detokenize{\)}}
+}
+}
+\fi
+\ExplSyntaxOff
+>>>