17 18 19 20 21 22 23 24 25 26
# File 'lib/Parsers/BQParser.rb', line 17 def parse(paragraph) if BQParser.isBQ(paragraph) result = "> #{paragraph.text}" result else if !nextParser.nil? nextParser.parse(paragraph) end end end