tracks/test/support/html_entity_helper.rb
2019-12-18 09:49:57 -06:00

12 lines
169 B
Ruby

# typed: true
require 'htmlentities'
module HTMLEntityHelper
def entity(name)
HTMLEntities.new.decode("&#{name};")
end
def nbsp
entity('nbsp')
end
end