# File lib/asciidoctor/substituters.rb, line 740
  def transform_quoted_text(match, type, scope)
    if match[0].start_with? '\\'
      match[0][1..-1]
    elsif scope == :constrained
      "#{match[1]}#{Inline.new(self, :quoted, match[3], :type => type, :attributes => parse_attributes(match[2])).render}"
    else
      Inline.new(self, :quoted, match[2], :type => type, :attributes => parse_attributes(match[1])).render
    end
  end