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

19 lines
415 B
Elixir
Raw Normal View History

2023-08-15 11:09:32 +00:00
defmodule BdfrBrowser.RenderUtils do
def selftext(txt) do
Earmark.as_html!(txt)
end
def comment(cmt) do
Earmark.as_html!(cmt)
end
2023-08-15 11:09:32 +00:00
def message(msg) do
2023-08-16 14:49:48 +00:00
img_replacement =
"<p class=\"text-center\"><img src=\"/chat_media/\\1\" class=\"img-fluid\" loading=\"lazy\" /></p>"
2023-08-15 11:09:32 +00:00
msg
|> String.replace(~r/https:\/\/i\.redd\.it\/(.+)/, img_replacement)
|> Earmark.as_html!()
end
end