This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
bdfr-browser/lib/bdfr_browser/render_utils.ex

10 lines
274 B
Elixir
Raw Normal View History

2023-08-15 11:09:32 +00:00
defmodule BdfrBrowser.RenderUtils do
def message(msg) do
img_replacement = "<img src=\"/chat_media/\\1\" style=\"max-width: 500px;\" alt=\"Image\" />"
msg
|> String.replace(~r/https:\/\/i\.redd\.it\/(.+)/, img_replacement)
|> Earmark.as_html!()
end
end