Files
chatwoot/app/helpers/message_format_helper.rb
T
2021-12-09 11:50:28 +05:30

14 lines
350 B
Ruby

module MessageFormatHelper
include RegexHelper
def transform_user_mention_content(message_content)
message_content.gsub(MENTION_REGEX, '\1')
end
def render_message_content(message_content)
# rubocop:disable Rails/OutputSafety
CommonMarker.render_html(message_content).html_safe
# rubocop:enable Rails/OutputSafety
end
end