diff options
4 files changed, 72 insertions, 2 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog index 295e80887e5..c69257cad6e 100644 --- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog +++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog @@ -1,3 +1,9 @@ +2021-03-21 Michal Hoftich <michal.h21@gmail.com> + + * tex4ht-4ht.tex (arydshln.4ht): added basic support for the + Arydshln package. + https://tex.stackexchange.com/a/637897/2891 + 2021-03-20 Michal Hoftich <michal.h21@gmail.com> * tex4ht-4ht.tex (graphics.4ht): don't execute graphics rules when diff --git a/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex b/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex index 5a6e07e4ec7..65fe3c18818 100644 --- a/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex +++ b/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex @@ -1,4 +1,4 @@ -% $Id: mktex4ht-cnf.tex 1087 2022-03-08 09:45:01Z michal_h21 $ +% $Id: mktex4ht-cnf.tex 1095 2022-03-21 13:29:42Z michal_h21 $ % Manually-maintained file, listing *.4ht files created by tex4ht-4ht.tex. % Read by tex4ht-cond4ht. % @@ -49,6 +49,7 @@ \AddFile{8}{tabulary-a} \AddFile{7}{tabularx} \AddFile{9}{tabu} +\AddFile{7}{arydshln} \AddFile{9}{threeparttable} \AddFile{9}{mdwtab} \AddFile{9}{multirow} diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex index 7786213f1d6..b4ce6fa169f 100644 --- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex +++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex @@ -1,4 +1,4 @@ -% $Id: tex4ht-4ht.tex 1094 2022-03-20 20:29:43Z michal_h21 $ +% $Id: tex4ht-4ht.tex 1095 2022-03-21 13:29:42Z michal_h21 $ % tex tex4ht-4ht or ht tex tex4ht-4ht % % Copyright 2009-2022 TeX Users Group @@ -10445,6 +10445,34 @@ the recursive macro \`'\inspect:cline' checks the digits separately. \endinput >>> \AddFile{7}{tabularx} + +%%%%%%%%%%%%%%%%%%%%%%%% +\Section{Arydshln} +%%%%%%%%%%%%%%%%%%%%%%%% + +We don't support any features yet, we just try to avoid +compilation errors + +\<arydshln.4ht\><<< +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% arydshln.4ht (|version), generated from |jobname.tex +% Copyright 2022 TeX Users Group +|<TeX4ht license text|> +% this is a copy of code that arydshln inserts to \@array +\def\:new:array{\adl@everyvbox\everyvbox + \everyvbox{\adl@arrayinit \the\adl@everyvbox \everyvbox\adl@everyvbox}% + \ifadl@inactive \adl@inactivate \else \adl@activate \fi + \let\adl@noalign\noalign} +\ifcsname n:@array:\endcsname% if \@array was already patched by TeX4ht + \let\orig:n@array\n:@array: + \def\n:@array:{\:new:array\orig:n@array} +\else + \pend:def\@array{\:new:array} +\fi +\Hinput{arydshln} +\endinput +>>> \AddFile{7}{arydshln} + %%%%%%%%%%%%%%%%%%%%%%%% \Section{Tabu} %%%%%%%%%%%%%%%%%%%%%%%% diff --git a/Master/texmf-dist/tex/generic/tex4ht/arydshln.4ht b/Master/texmf-dist/tex/generic/tex4ht/arydshln.4ht new file mode 100644 index 00000000000..00ef03af65d --- /dev/null +++ b/Master/texmf-dist/tex/generic/tex4ht/arydshln.4ht @@ -0,0 +1,35 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% arydshln.4ht (2022-03-21-13:43), generated from tex4ht-4ht.tex +% Copyright 2022 TeX Users Group +% +% This work may be distributed and/or modified under the +% conditions of the LaTeX Project Public License, either +% version 1.3c of this license or (at your option) any +% later version. The latest version of this license is in +% http://www.latex-project.org/lppl.txt +% and version 1.3c or later is part of all distributions +% of LaTeX version 2005/12/01 or later. +% +% This work has the LPPL maintenance status "maintained". +% +% The Current Maintainer of this work +% is the TeX4ht Project <http://tug.org/tex4ht>. +% +% If you modify this program, changing the +% version identification would be appreciated. +\immediate\write-1{version 2022-03-21-13:43} + +% this is a copy of code that arydshln inserts to \@array +\def\:new:array{\adl@everyvbox\everyvbox + \everyvbox{\adl@arrayinit \the\adl@everyvbox \everyvbox\adl@everyvbox}% + \ifadl@inactive \adl@inactivate \else \adl@activate \fi + \let\adl@noalign\noalign} +\ifcsname n:@array:\endcsname% if \@array was already patched by TeX4ht + \let\orig:n@array\n:@array: + \def\n:@array:{\:new:array\orig:n@array} +\else + \pend:def\@array{\:new:array} +\fi +\Hinput{arydshln} +\endinput + |