--- loncom/xml/lontexconvert.pm 2009/08/12 20:31:08 1.97 +++ loncom/xml/lontexconvert.pm 2009/08/12 20:43:25 1.98 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # TeX Conversion Module # -# $Id: lontexconvert.pm,v 1.97 2009/08/12 20:31:08 www Exp $ +# $Id: lontexconvert.pm,v 1.98 2009/08/12 20:43:25 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -316,6 +316,8 @@ sub converted { return &jsMath_converted($string); } elsif ($mode =~ /mimetex/i) { return &mimetex_converted($string); + } elsif ($mode =~ /raw/i) { + return $$string; } return &tth_converted($string); }