diff options
author | Karl Berry <karl@freefriends.org> | 2024-09-11 21:21:33 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2024-09-11 21:21:33 +0000 |
commit | 0e75721c33426be3ce79ed5fed738986cd2e495d (patch) | |
tree | 503d567a24e8b2345b1c84f59874be4d1d518d36 /Master | |
parent | 79608ac5b7bddcab6b1db198bdf45c667c032b7c (diff) |
avoid spaces after mathjax \begin and \end
git-svn-id: svn://tug.org/texlive/trunk@72258 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
3 files changed, 14 insertions, 9 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog index 64f4b66df88..0efdd8bc4fc 100644 --- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog +++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog @@ -1,3 +1,8 @@ +2024-09-11 Michal Hoftich <michal.h21@gmail.com> + + * tex4ht-mathjax.tex (mathjax-latex-4ht.4ht): prevent insertion of + spaces after \begin and \end in \VerbMath. + 2024-09-10 Michal Hoftich <michal.h21@gmail.com> * tex4ht-mathjax.tex (mathjax-latex-4ht.4ht): use \detokenize again, diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathjax.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathjax.tex index f4338eb6f58..56c53e36986 100644 --- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathjax.tex +++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathjax.tex @@ -1,4 +1,4 @@ -% $Id: tex4ht-mathjax.tex 1553 2024-09-10 13:43:17Z michal_h21 $ +% $Id: tex4ht-mathjax.tex 1554 2024-09-11 13:41:52Z michal_h21 $ % compile: latex tex4ht-mathjax % % Copyright 2018-2024 TeX Users Group @@ -132,9 +132,9 @@ environments. They will then keep the LaTeX code unchanged. \long\def\AltlDisplayDollars#1$${\alteqtoks{\[#1\]}$$} \newcommand\VerbMathToks[2]{% - \alteqtoks{\begin{#2} - #1 - \end{#2}}% + \HCode{\string\begin{#2}}% + \alteqtoks{#1}% + \HCode{\string\end{#2}}% } >>> diff --git a/Master/texmf-dist/tex/generic/tex4ht/mathjax-latex-4ht.4ht b/Master/texmf-dist/tex/generic/tex4ht/mathjax-latex-4ht.4ht index 8fb4d3cbe44..0805e1ffff5 100644 --- a/Master/texmf-dist/tex/generic/tex4ht/mathjax-latex-4ht.4ht +++ b/Master/texmf-dist/tex/generic/tex4ht/mathjax-latex-4ht.4ht @@ -1,4 +1,4 @@ -% mathjax-latex-4ht.4ht (2024-09-10-13:45), generated from tex4ht-mathjax.tex +% mathjax-latex-4ht.4ht (2024-09-11-13:40), generated from tex4ht-mathjax.tex % Copyright 2018-2024 TeX Users Group % % This work may be distributed and/or modified under the @@ -16,7 +16,7 @@ % % If you modify this program, changing the % version identification would be appreciated. -\immediate\write-1{version 2024-09-10-13:45} +\immediate\write-1{version 2024-09-11-13:40} \ExplSyntaxOn @@ -49,9 +49,9 @@ \long\def\AltlDisplayDollars#1$${\alteqtoks{\[#1\]}$$} \newcommand\VerbMathToks[2]{% - \alteqtoks{\begin{#2} - #1 - \end{#2}}% + \HCode{\string\begin{#2}}% + \alteqtoks{#1}% + \HCode{\string\end{#2}}% } \ExplSyntaxOn \seq_new:N\:savedmathjaxenvs |