Current section

Files

Jump to
click_send lib click_send message_formatter.ex
Raw

lib/click_send/message_formatter.ex

defmodule ClickSend.MessageFormatter do
@replacement "<br>"
def call(msg) do
msg
|> String.replace("\r\n", @replacement)
|> String.replace(~r/[\r\n]/, @replacement)
end
end