# File lib/asciidoctor/parser.rb, line 951 def self.blockquote? lines, first_line = nil lines.size > 1 && ((first_line || lines[0]).start_with? '"') && (lines[-1].start_with? '-- ') && (lines[-2].end_with? '"') end