summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-06-12 22:01:13 +0000
committerKarl Berry <karl@freefriends.org>2021-06-12 22:01:13 +0000
commitbdec76c718a49ea663ffccad8cf864fb396a63d6 (patch)
tree7e12b6a661271c06bc68be5ccf21309e39d5ba36 /Master/texmf-dist/source
parent7733c471ba5c293660e25c0f9d6cead156ef1c0e (diff)
\item vertical spacing (tex4ht r946), scrlayer support (tex4ht r947)
git-svn-id: svn://tug.org/texlive/trunk@59567 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/ChangeLog8
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex5
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex5
3 files changed, 16 insertions, 2 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
index c93b99bd4a8..34d97dfca72 100644
--- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog
+++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
@@ -1,3 +1,11 @@
+2021-06-12 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-html4.tex (html4.4ht): remove vertical space in \item items that
+ contain just one paragraph.
+ https://tug.org/pipermail/tex4ht/2021q2/002997.html
+ * tex4ht-4ht.tex (scrlayer.4ht): fix for runtime error when scrlayer checks
+ whether it can access current page style.
+
2021-06-06 Karl Berry <karl@freefriends.org>
* tex4ht-4ht.tex (moreverb.4ht, verbatim.4ht, fancyvrb.4ht,
diff --git a/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex b/Master/texmf-dist/source/generic/tex4ht/mktex4ht-cnf.tex
index bad50dd5bb6..83a84aab4c6 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 903 2021-04-16 15:02:57Z michal_h21 $
+% $Id: mktex4ht-cnf.tex 947 2021-06-12 16:27:33Z michal_h21 $
% Manually-maintained file, listing *.4ht files created by tex4ht-4ht.tex.
% Read by tex4ht-cond4ht.
%
@@ -89,6 +89,7 @@
\AddFile{9}{texinfo}
\AddFile{9}{doc}
\AddFile{9}{holtxdoc}
+\AddFile{9}{scrlayer}
\AddFile{9}{scrbook}
\AddFile{9}{scrartcl}
\AddFile{9}{scrreprt}
@@ -356,6 +357,8 @@
\AddFile{9}{parallel}
\AddFile{9}{skak}
\AddFile{9}{chessboard}
+\AddFile{9}{menukeys}
\AddFile{9}{animate}
\AddFile{9}{sectionbreak}
+\AddFile{9}{fontawesome5}
% \AddFile{9}{mktex4ht}
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
index 9bf0a4bcab7..62591b9ef95 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-html4.tex 944 2021-06-03 09:29:05Z michal_h21 $
+% $Id: tex4ht-html4.tex 946 2021-06-12 09:15:22Z michal_h21 $
% Compile 4 times: latex tex4ht-html4
% Copy html4.4ht into the work directory before all but the last compilation.
%
@@ -2805,7 +2805,10 @@ such a case, we don't have proper nestings of environments.
\<configure html4 latex\><<<
\Css{li p.indent { text-indent: 0em }}
\Css{li p:first-child{ margin-top:0em; }}
+\Css{li p:first-child{ margin-bottom; }}
\Css{li p:last-child, li div:last-child { margin-bottom:0.5em; }}
+% fix for <li> with only one paragraph
+\Css{li p:first-child{ margin-bottom:0; }}
\Css{li p\string ~ul:last-child,
li p\string ~ol:last-child{ margin-bottom:0.5em; }}
>>>