Skip to content

Commit

Permalink
Merge pull request #11 from nickel/hotfix
Browse files Browse the repository at this point in the history
Locking down Markdown madness! πŸ”
  • Loading branch information
nickel authored Apr 11, 2024
2 parents b1cb841 + b1af54d commit 8465f58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/packages/notes/views/notes/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<%= "πŸ”’" if note.private? %>
<%= note.tags.map { |tag| link_to "##{tag}", notes_path(tag: tag) }.join(" ").html_safe %>

<p><%= truncate(note.intro, length: 200) %></p>
<p><%= MarkdownRenderer.convert_markdown(truncate(note.intro, length: 200)).html_safe %></p>
</li>
<% end %>
</ul>

0 comments on commit 8465f58

Please sign in to comment.