# File lib/html/pipeline/markdown_filter.rb, line 23
      def call
        options = [:GITHUB_PRE_LANG]
        options << :HARDBREAKS if context[:gfm] != false
        options << :UNSAFE if context[:unsafe]
        extensions = context.fetch(
          :commonmarker_extensions,
          ??[table strikethrough tagfilter autolink]
        )
        html = CommonMarker.render_html(@text, options, extensions)
        html.rstrip!
        html
      end