# File lib/maruku/output/s5/to_s5.rb, line 18
        def  html_escape(string)
          string.gsub( /&/, "&" ).
                 gsub( /</, "&lt;" ).
                 gsub( />/, "&gt;" ).
                 gsub( /'/, "&#39;" ).
                 gsub( /"/, "&quot;" )
        end