class ViewComponent::Base

def maybe_escape_html(text)

def maybe_escape_html(text)
  return text if @current_template && !@current_template.html?
  return text if text.blank?
  if text.html_safe?
    text
  else
    yield
    html_escape(text)
  end
end