module WEBrick::HTMLUtils
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/htmlutils.rb, line 18 def escape(string) return "" unless string str = string.b str.gsub!(/&/n, '&') str.gsub!(/\"/n, '"') str.gsub!(/>/n, '>') str.gsub!(/</n, '<') str.force_encoding(string.encoding) end
Escapes &, “, > and < in string