module Decidim::Meetings::ApplicationHelper

def render_meeting_body(meeting)

If the content is safe, HTML tags are sanitized, otherwise, they are stripped.
def render_meeting_body(meeting)
  sanitized = render_sanitized_content(meeting, :description)
  if safe_content?
    Decidim::ContentProcessor.render_without_format(sanitized).html_safe
  else
    Decidim::ContentProcessor.render(sanitized, "div")
  end
end