Current section
Files
Jump to
Current section
Files
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