Changeset 94fcf4 in git for doc/texi2html
- Timestamp:
- Jun 8, 1998, 3:22:47 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 02ae4d98b3ee2362873bdb40b33f39fd9384701c
- Parents:
- 371d054fe95ebf56332b6e4042357991ab985b26
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/texi2html
r371d05 r94fcf4 2 2 'di '; 3 3 'ig 00 '; 4 # $Id: texi2html,v 1. 1 1998-06-08 13:06:03krueger Exp $4 # $Id: texi2html,v 1.2 1998-06-08 13:22:47 krueger Exp $ 5 5 # Description: Program to transform most Texinfo documents to HTML. 6 6 # The plan is for the next version of makeinfo to support HTML output … … 448 448 %gloss2href = (); # glossary term to HREF 449 449 @sections = (); # list of sections 450 @left_index = (); 450 451 %tag2pro = (); # protected sections 451 452 … … 662 663 &next_doc; 663 664 push(@lines, $SPLITTAG) if $split_num++; 664 print "= = =>$node\n";665 665 push(@sections, $node); 666 666 } … … 908 908 $name = &update_sec_num($tag, $level) . " $name" 909 909 if $number_sections && $tag !~ /^unnumbered/; 910 push(@left_index, $name); 910 911 if ($tag =~ /heading$/) { 911 912 push(@lines, &html_debug("\n", __LINE__)); … … 934 935 &next_doc; 935 936 push(@lines, $SPLITTAG) if $split_num++; 936 print "=+=+=> $name;\n";937 937 push(@sections, $name); 938 938 } … … 1491 1491 #push(@menu_lines, "<NOBR>\n"); 1492 1492 push(@menu_lines, "<DL>\n"); 1493 foreach (@sections) { 1494 &left_menu_entry($_); 1493 foreach (@left_index) { 1494 if (!/^[A-Z0-9]\./) { 1495 &left_menu_entry($_); 1496 } 1495 1497 } 1496 1498 push(@menu_lines, "</DL>\n");
Note: See TracChangeset
for help on using the changeset viewer.