module CodeRay::ForRedCloth

def unescape(html) # :nodoc:

:nodoc:
def unescape(html)  # :nodoc:
  replacements = {
    '&' => '&',
    '"' => '"',
    '>' => '>',
    '&lt;' => '<',
  }
  html.gsub(/&(?:amp|quot|[gl]t);/) { |entity| replacements[entity] }
end