--- loncom/xml/londefdef.pm 2000/07/19 20:21:19 1.4 +++ loncom/xml/londefdef.pm 2000/10/26 14:01:40 1.6 @@ -17,9 +17,17 @@ sub BEGIN { 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 = $parser->get_text("/m"); - $currentstring = &Apache::lontexconvert::converted('\\documentstyle{article}'.$inside); + my $inside = &Apache::lonxml::get_all_text("/m",$$parser[$#$parser]); + $inside ='\\documentstyle{article}'.$inside; +# &Apache::lonxml::debug($inside); + $currentstring = &Apache::lontexconvert::converted(\$inside); +# &Apache::lonxml::debug($currentstring); + } elsif ($target eq 'tex') { $currentstring = "\$"; } @@ -31,6 +39,7 @@ sub BEGIN { if ($target eq 'web') { } elsif ($target eq 'tex') { $currentstring = "\$"; + } elsif ($target eq 'meta') { } return $currentstring; } @@ -824,6 +833,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; + } #----------------------------------------------------------------------------- tag sub start_a { my ($target,$token) = @_;