17 lines
385 B
Elixir
17 lines
385 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 = "<img src=\"/chat_media/\\1\" style=\"max-width: 300px;\" alt=\"Image\" />"
|
|
|
|
msg
|
|
|> String.replace(~r/https:\/\/i\.redd\.it\/(.+)/, img_replacement)
|
|
|> Earmark.as_html!()
|
|
end
|
|
end
|