module ActionView::Helpers::ContentExfiltrationPreventionHelper

def prevent_content_exfiltration(html)

def prevent_content_exfiltration(html)
  if prepend_content_exfiltration_prevention
    CONTENT_EXFILTRATION_PREVENTION_MARKUP + html
  else
    html
  end
end