module Decidim::Meetings::ApplicationHelper
def render_meeting_body(meeting)
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