4
votes
Is there a better HTML escaping and unescaping tool than CGI for Ruby?
The htmlentities gem should do the trick:
require 'rubygems'
require 'htmlentities'
coder = HTMLEntities.new
coder.decode('…') # => "…"
coder.decode('…') # …
