# File lib/bluecloth.rb, line 1023
        def encode_code( str, rs )
                str.gsub( %r{&}, '&' ).
                        gsub( %r{<}, '&lt;' ).
                        gsub( %r{>}, '&gt;' ).
                        gsub( CodeEscapeRegexp ) {|match| EscapeTable[match][:md5]}
        end