module Erubi

def self.h(value)

equivalents.
Escape the following characters with their HTML/XML
def self.h(value)
  value.to_s.gsub(/[&<>"']/, ESCAPE_TABLE)
end

def self.h(value)

:nocov:
def self.h(value)
  value.to_s.gsub(/[&<>"']/){|s| ESCAPE_TABLE[s]}
end