class Slack::Notifier::Util::LinkFormatter

def sub_html_links string

def sub_html_links string
  return string unless formats.include?(:html)
  string.gsub(HTML_PATTERN) do
    slack_link Regexp.last_match[1], Regexp.last_match[2]
  end
end