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

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