- Adds support for superscript when rendering article markdown - Chatwoot Markdown Render to render markdown everywhere Co-authored-by: Sojan <sojan@pepalo.com>
13 lines
501 B
Plaintext
13 lines
501 B
Plaintext
<% @messages.each do |message| %>
|
|
<p style="font-family: Roboto,"Helvetica Neue",Tahoma,Arial,sans-serif; text-align: start; unicode-bidi: plaintext;">
|
|
<% if message.content %>
|
|
<%= ChatwootMarkdownRenderer.new(message.content).render_message %>
|
|
<% end %>
|
|
<% if message.attachments %>
|
|
<% message.attachments.each do |attachment| %>
|
|
attachment [<a href="<%= attachment.file_url %>" _target="blank">click here to view</a>]
|
|
<% end %>
|
|
<% end %>
|
|
</p>
|
|
<% end %>
|