Changeset 94fcf4 in git for doc/texi2html


Ignore:
Timestamp:
Jun 8, 1998, 3:22:47 PM (25 years ago)
Author:
Kai Krüger <krueger@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
02ae4d98b3ee2362873bdb40b33f39fd9384701c
Parents:
371d054fe95ebf56332b6e4042357991ab985b26
Message:
*** empty log message ***


git-svn-id: file:///usr/local/Singular/svn/trunk@2088 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/texi2html

    r371d05 r94fcf4  
    22'di ';
    33'ig 00 ';
    4 # $Id: texi2html,v 1.1 1998-06-08 13:06:03 krueger Exp $
     4# $Id: texi2html,v 1.2 1998-06-08 13:22:47 krueger Exp $
    55# Description: Program to transform most Texinfo documents to HTML.
    66# The plan is for the next version of makeinfo to support HTML output
     
    448448%gloss2href = ();                       # glossary term to HREF
    449449@sections = ();                         # list of sections
     450@left_index = ();
    450451%tag2pro = ();                          # protected sections
    451452
     
    662663                &next_doc;
    663664                push(@lines, $SPLITTAG) if $split_num++;
    664                 print "= = =>$node\n";
    665665                push(@sections, $node);
    666666            }
     
    908908                $name = &update_sec_num($tag, $level) . "  $name"
    909909                    if $number_sections && $tag !~ /^unnumbered/;
     910                push(@left_index, $name);
    910911                if ($tag =~ /heading$/) {
    911912                    push(@lines, &html_debug("\n", __LINE__));
     
    934935                            &next_doc;
    935936                            push(@lines, $SPLITTAG) if $split_num++;
    936                             print "=+=+=> $name;\n";
    937937                            push(@sections, $name);
    938938                        }
     
    14911491#push(@menu_lines, "<NOBR>\n");
    14921492push(@menu_lines, "<DL>\n");
    1493 foreach (@sections) {
    1494     &left_menu_entry($_);
     1493foreach (@left_index) {
     1494    if (!/^[A-Z0-9]\./) {
     1495        &left_menu_entry($_);
     1496    }
    14951497}
    14961498push(@menu_lines, "</DL>\n");
Note: See TracChangeset for help on using the changeset viewer.