--- loncom/xml/londefdef.pm	2000/10/12 13:51:50	1.5
+++ loncom/xml/londefdef.pm	2000/11/01 17:26:14	1.8
@@ -9,14 +9,31 @@ 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'));
+    &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','output'));
 }
 
 #===================================================================== TAG SUBROUTINES
+#-- <output>
+        sub start_output {
+ 	    my ($target,$token,$parstack,$parser) = @_;
+            $Apache::lonxml::textredirection = 1; 
+            my $result = '';
+            return $result;
+	}
+        sub end_output {
+ 	    my ($target,$token,$parstack,$parser) = @_;
+            $Apache::lonxml::textredirection = 0;             
+            my $result = '';
+            return $result;
+	}
 #-- <m> tag
         sub start_m {
 	    my ($target,$token,$parstack,$parser) = @_;
             my $currentstring = '';
+#            if ($target eq 'meta') {
+#              my $inside = &Apache::lonxml::get_all_text("/m",$$parser[$#$parser]); 
+#	      $currentstring ='';
+#	    }
             if ($target eq 'web') {
 		my $inside = &Apache::lonxml::get_all_text("/m",$$parser[$#$parser]); 
                 $inside ='\\documentstyle{article}'.$inside;
@@ -25,7 +42,7 @@ sub BEGIN {
 #          &Apache::lonxml::debug($currentstring);
 
 	    } elsif ($target eq 'tex') {
-              $currentstring = "\$";
+              $currentstring = "";
             }
 	   return $currentstring;
 	}
@@ -34,7 +51,8 @@ sub BEGIN {
             my $currentstring = '';
             if ($target eq 'web') {
             } elsif ($target eq 'tex') {
-              $currentstring = "\$";
+              $currentstring = "";
+	    } elsif ($target eq 'meta') {
             }
 	   return $currentstring;
 	}
@@ -828,6 +846,15 @@ sub BEGIN {
 	    } 
            return $currentstring;
 	}
+        sub end_hr {
+	    my ($target,$token) = @_;
+            my $currentstring = '';
+            if ($target eq 'web') {
+	       $currentstring .= $token->[2];
+	    } elsif ($target eq 'tex') {
+	    } 
+           return $currentstring;
+	}
 #----------------------------------------------------------------------------- <a> tag
         sub start_a {
 	    my ($target,$token) = @_;