Skip to content

Commit e6bf88b

Browse files
committed
[css2] Added class="tocline0" to the LIs, so that our patched html2ps will
omit the bullets. --HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%40949
1 parent b34382e commit e6bf88b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

css2/bin/Attic/mkidx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,9 @@ foreach $e (@sorted) {
7171
}
7272

7373
# Write the subterms that are different
74+
# class="tocline*" directs out patched html2ps to omit the bullet
7475
for ($j = $i; $j <= $#subs; $j++) {
75-
print OUTPUT "\n$indent[$j]<li>$subs[$j]";
76+
print OUTPUT "\n$indent[$j]<li class=\"tocline0\">$subs[$j]";
7677
if ($j < $#subs) {
7778
print OUTPUT "\n$indent[$j]<ul class=\"index\">";
7879
$lvl++;

css2/bin/mkidx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,9 @@ foreach $e (@sorted) {
7171
# class="tocline*" directs our patched html2ps to omit the bullet
7272
for ($j = $i; $j <= $#subs; $j++) {
7373
if ($lvl <= $j) {
74+
# class="tocline*" directs out patched html2ps to omit the bullet
7475
$lvl++;
75-
print OUTPUT "\n$indent[$j]<li>$subs[$j]";
76+
print OUTPUT "\n$indent[$j]<li class=\"tocline0\">$subs[$j]";
7677
if ($j < $#subs) {
7778
print OUTPUT "\n$indent[$j]<ul class=\"index\">";
7879
print OUTPUT "\n$indent[$j]<li class=\"tocline0\">$subs[$j]";

0 commit comments

Comments
 (0)