Diff for /loncom/xml/londefdef.pm between versions 1.2 and 1.3

version 1.2, 2000/06/27 19:35:32 version 1.3, 2000/07/18 21:27:10
Line 6 Line 6
 package Apache::londefdef;   package Apache::londefdef; 
   
 use strict;  use strict;
   use Apache::lonxml;
   
   sub BEGIN {
       &Apache::lonxml::register('Apache::londefdef',('m','html','head','map','applet','select','option','input','textarea','form','meta','title','body','center','b','strong','table','dt','h1','h2','h3','h4','h5','h6','cite','i','address','dd','dl','dir','ol','ul','menu','dfn','kbd','tt','code','em','q','p','br','big','small','basefont','font','s','sub','strike','sup','hr','a','li','u'));
   }
   
 #===================================================================== TAG SUBROUTINES  #===================================================================== TAG SUBROUTINES
 #----------------------------------------------------------------------------- <m> tag  #----------------------------------------------------------------------------- <m> tag
         sub start_mfirst {  
     my ($target,$token) = @_;  
             my $currentstring = '';  
             if ($target eq 'web') {  
               $currentstring = "\$out = lontexconvert::converted(\$in = '\\documentstyle{article}'.'\$'.\"";       
     } elsif ($target eq 'tex') {  
               $currentstring = "\$";  
             }  
    return $currentstring;  
  }  
         sub start_m {          sub start_m {
     my ($target,$token) = @_;      my ($target,$token) = @_;
             my $currentstring = '';              my $currentstring = '';
             if ($target eq 'web') {              if ($target eq 'web') {
               $currentstring = "\$out = lontexconvert::converted(\$in = '\$'.\"";                     $currentstring =  lontexconvert::converted('hi');     
     } elsif ($target eq 'tex') {      } elsif ($target eq 'tex') {
               $currentstring = "\$";                $currentstring = "\$";
             }              }

Removed from v.1.2  
changed lines
  Added in v.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>