From 68c81b2e7681580531c0edacc03185a55e60957f Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Thu, 14 Mar 2024 04:36:06 -0500 Subject: [PATCH] feat: Style link log --- lib/pre_dot_hn/link_log.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pre_dot_hn/link_log.ex b/lib/pre_dot_hn/link_log.ex index 27a1328..0c66a5c 100644 --- a/lib/pre_dot_hn/link_log.ex +++ b/lib/pre_dot_hn/link_log.ex @@ -37,7 +37,7 @@ defmodule PreDotHn.LinkLog do <%= for link <- @links do %> - <%= HtmlSanitizeEx.strip_tags(link["name"]) %> + 🔗 <%= HtmlSanitizeEx.strip_tags(link["name"]) %> <%= link["summary"] %> @@ -63,7 +63,7 @@ defmodule PreDotHn.LinkLog do ~H""" <%= for link <- @links do %>
- <%= link["name"] %> + 🔗 <%= link["name"] %> <%= {:safe, Markdown.render(link["summary"])} %>
<% end %>