# frozen_string_literal: true # Remove this entire file when removing `use_cmark_renderer` feature flag and switching to the CMARK html renderer. # https://gitlab.com/gitlab-org/gitlab/-/issues/345744 module Banzai module Renderer module CommonMark class HTML < CommonMarker::HtmlRenderer def code_block(node) block do out("') out(escape_html(node.string_content)) out('') end end end end end end