Changeset 3de58c in git for doc/texi2html


Ignore:
Timestamp:
Aug 27, 2001, 4:40:11 PM (22 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
50cbdc419a94d1167005988642cf8a9ee930d18b
Parents:
e48054420f3b08092bdc82ec27f35dadd698c988
Message:
*hannes: merge-2-0-2


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

Legend:

Unmodified
Added
Removed
  • doc/texi2html

    re480544 r3de58c  
    3737
    3838# CVS version:
    39 # $Id: texi2html,v 1.10 2000-08-16 14:24:09 obachman Exp $
     39# $Id: texi2html,v 1.11 2001-08-27 14:40:10 Singular Exp $
    4040
    4141# Homepage:
     
    9393# Afterwards, either, load it with command-line option -init_file <your_init_file>
    9494#
    95 # $Id: texi2html,v 1.10 2000-08-16 14:24:09 obachman Exp $
     95# $Id: texi2html,v 1.11 2001-08-27 14:40:10 Singular Exp $
    9696
    9797######################################################################
     
    15221522# --------------------------------------------------------------------------
    15231523# Locally modified by obachman (Display type instead of env, order by cmp)
    1524 # $Id: texi2html,v 1.10 2000-08-16 14:24:09 obachman Exp $
     1524# $Id: texi2html,v 1.11 2001-08-27 14:40:10 Singular Exp $
    15251525
    15261526# use strict;
     
    54275427    $what =~ s/\&\#60;A ([^\&]+)\&\#62;/<A $1>/g;     # <A [^&]+>
    54285428    $what =~ s/\&\#60;IMG ([^\&]+)\&\#62;/<IMG $1>/g; # <IMG [^&]+>
     5429    $what =~ s/\&\#38;/\&amp;/g;
     5430    $what =~ s/\&\#60;/\&lt;/g;
     5431    $what =~ s/\&\#62;/\&gt;/g;
    54295432    return($what);
    54305433}
     
    54505453    $what =~ s/\&\#60;/\</g;
    54515454    $what =~ s/\&\#62;/\>/g;
     5455    $what =~ s/\&amp;/\&/g;
     5456    $what =~ s/\&lt;/\</g;
     5457    $what =~ s/\&gt;/\>/g;
    54525458    return($what);
    54535459}
Note: See TracChangeset for help on using the changeset viewer.