html_escape(s) -> String
[permalink][rdoc]h(s) -> String
文字列 s を HTML用にエスケープした文字列を返します。
文字列 s 中に含まれる &"<> を、実体参照 & " < > にそれぞれ変更した文字列を返します (CGI.escapeHTMLとほぼ同じです)。
require "erb"
include ERB::Util
puts html_escape("is a > 0 & a < 10?")
# is a > 0 & a < 10?