From 6c2e0872df94c7c970aebabafc4b809be446485a Mon Sep 17 00:00:00 2001 From: Max Nikulin Date: Sat, 2 Oct 2021 23:36:49 +0700 Subject: [PATCH 1/2] manfull.pl: Adjust pattern for current makeinfo * mk/manfull.pl: During patching of single-page html manuals allow current form of table of contents headers. Older makeinfo did not add "contents-heading" class to "

" element. Helper script failed to properly modify HTML files generated by current version of makeinfo. With partially patched file, CSS stiles intended for table of contents were applied to all unordered lists, so e.g. in "Plain Lists" section items were bold and with missed markers. --- mk/manfull.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/manfull.pl b/mk/manfull.pl index 95ffa392c..307ce396e 100755 --- a/mk/manfull.pl +++ b/mk/manfull.pl @@ -13,7 +13,7 @@ while () { } elsif (/
/) { print OUT; print OUT '

This is the official manual for the latest Org mode release.

'; - } elsif (/

Table of Contents<\/h2>/) { + } elsif (/

Table of Contents<\/h2>|

/) { print OUT; print OUT 'https://orgmode.org
'; $toc = 1; -- 2.25.1