13073629bb
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
14 lines
580 B
Text
14 lines
580 B
Text
<% markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true, tables: true) %>
|
|
|
|
<% @messages.each do |message| %>
|
|
<p style="font-family: Roboto,"Helvetica Neue",Tahoma,Arial,sans-serif; text-align: start; unicode-bidi: plaintext;">
|
|
<% if message.content %>
|
|
<%= markdown.render(message.content).html_safe %>
|
|
<% 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 %>
|