docbrown/lib/slack/notifier/util/link_formatter.rb

13 lines
241 B
Ruby

module Slack
class Notifier
module Util
class LinkFormatter
class << self
def format string, opts={}
LinkFormatter.new(string, **opts).formatted
end
end
end
end
end
end