diff options
author | Norbert Preining <norbert@preining.info> | 2024-05-07 03:01:23 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2024-05-07 03:01:23 +0000 |
commit | 183e0a342c2d76377b644e9e09493a870d858cc7 (patch) | |
tree | 6b95149603466ab5727da9a4ad938c9eafdaaa03 /support/TeX4ht/source | |
parent | 6d64372d4e3df2497c111b083e674329a25d4db8 (diff) |
CTAN sync 202405070301
Diffstat (limited to 'support/TeX4ht/source')
-rw-r--r-- | support/TeX4ht/source/ChangeLog | 9 | ||||
-rw-r--r-- | support/TeX4ht/source/tex4ht-4ht.tex | 7 | ||||
-rw-r--r-- | support/TeX4ht/source/tex4ht-sty.tex | 17 |
3 files changed, 23 insertions, 10 deletions
diff --git a/support/TeX4ht/source/ChangeLog b/support/TeX4ht/source/ChangeLog index 7bf38f7cc5..6fd8ded5b1 100644 --- a/support/TeX4ht/source/ChangeLog +++ b/support/TeX4ht/source/ChangeLog @@ -1,3 +1,12 @@ +2024-05-06 Michal Hoftich <michal.h21@gmail.com> + + * tex4ht-sty.tex (tex4ht.sty): don't disable \DocumentMetadata. + https://github.com/michal-h21/make4ht/issues/145 + + * tex4ht-4ht.tex (tagpdf-base-hooks.4ht): don't use \ExplSyntaxOn to + prevent catcode issues when we use \DocumentMetadata in the + document. + 2024-05-03 Michal Hoftich <michal.h21@gmail.com> * tex4ht-4ht.tex (usepackage.4ht, tagpdf-hooks.4ht, diff --git a/support/TeX4ht/source/tex4ht-4ht.tex b/support/TeX4ht/source/tex4ht-4ht.tex index 1abdca7753..172cc6fa40 100644 --- a/support/TeX4ht/source/tex4ht-4ht.tex +++ b/support/TeX4ht/source/tex4ht-4ht.tex @@ -1,4 +1,4 @@ -% $Id: tex4ht-4ht.tex 1513 2024-05-03 14:15:23Z michal_h21 $ +% $Id: tex4ht-4ht.tex 1514 2024-05-06 14:50:21Z michal_h21 $ % tex tex4ht-4ht or ht tex tex4ht-4ht % % Copyright 2009-2024 TeX Users Group @@ -5115,10 +5115,9 @@ here as well. % tagpd-base-hooks.4ht (|version), generated from |jobname.tex % Copyright 2024 TeX Users Group |<TeX4ht license text|> -\ExplSyntaxOn % ignore tagpdf's specials -\cs_set_protected:Npn \__tag_whatsits: {} -\ExplSyntaxOff +% we use csname, because \ExplSyntaxOn .. Off caused catcode issues +\expandafter\def\csname __tag_whatsits:\endcsname{} \endinput >>> \AddFile{9}{tagpdf-base-hooks} diff --git a/support/TeX4ht/source/tex4ht-sty.tex b/support/TeX4ht/source/tex4ht-sty.tex index 34435a7824..e713134f7e 100644 --- a/support/TeX4ht/source/tex4ht-sty.tex +++ b/support/TeX4ht/source/tex4ht-sty.tex @@ -1,4 +1,4 @@ -% $Id: tex4ht-sty.tex 1451 2024-01-23 14:16:56Z michal_h21 $ +% $Id: tex4ht-sty.tex 1514 2024-05-06 14:50:21Z michal_h21 $ % tex tex4ht-sty or ht tex tex4ht-sty % % Copyright 2009-2022 TeX Users Group @@ -175,11 +175,16 @@ \let\AtBeginDocument\origatbegindocument \fi -% disable new LaTeX's tagging support, -% but save the requested keys for possible latter processing -\ifdefined\DocumentMetadata - \def\DocumentMetadata#1{\def\:DocumentMetadata{#1}} -\fi + +% we used to disable new LaTeX's tagging support, +% because it clashed with TeX4ht and caused fatal errors +% we fixed the fatal errors, so it should be possible to +% fix other issues as well. The upside will be that we +% should be able to coordinate the projects and reuse some code. +% https://github.com/michal-h21/make4ht/issues/145 +% \ifdefined\DocumentMetadata +% \def\DocumentMetadata#1{\def\:DocumentMetadata{#1}} +% \fi \def\writesixteen#1{\immediate\write99999{#1}} |<save cat codes|> |