diff options
Diffstat (limited to 'lib/sisu/v5/html_tune.rb')
| -rw-r--r-- | lib/sisu/v5/html_tune.rb | 13 | 
1 files changed, 12 insertions, 1 deletions
| diff --git a/lib/sisu/v5/html_tune.rb b/lib/sisu/v5/html_tune.rb index 84336861..39cbb708 100644 --- a/lib/sisu/v5/html_tune.rb +++ b/lib/sisu/v5/html_tune.rb @@ -104,6 +104,16 @@ module SiSU_HTML_Tune      def initialize(html='')        @html=html      end +    def clean_for_html +      html=@html +      str=if html.is_a?(String) +        html +      else html.obj +      end +      str=str.gsub(/#{Mx[:gl_o]}(#[0-9]{3})#{Mx[:gl_c]}/u,'&\1;'). +        gsub(/#{Mx[:gl_o]}#([a-z]{2,4})#{Mx[:gl_c]}/u,'&\1;'). +        gsub(/[<]/m,'<').gsub(/[>]/m,'>') +    end      def clean        html=@html        str=if html.is_a?(String) @@ -111,7 +121,8 @@ module SiSU_HTML_Tune        else html.obj        end        str=str.gsub(/#{Mx[:gl_o]}(#[0-9]{3})#{Mx[:gl_c]}/u,'&\1;'). -        gsub(/#{Mx[:gl_o]}#([a-z]{2,4})#{Mx[:gl_c]}/u,'&\1;') +        gsub(/#{Mx[:gl_o]}#([a-z]{2,4})#{Mx[:gl_c]}/u,'&\1;'). +        gsub(/[\\]{2}/m,'<br />')      end    end    class Tune | 
