mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
15 lines
447 B
Ruby
15 lines
447 B
Ruby
module MessageFormatHelper
|
|
include RegexHelper
|
|
|
|
def transform_user_mention_content(message_content)
|
|
# attachment message without content, message_content is nil
|
|
message_content.presence ? 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
|