require "hemingway/block/quote/quote_nodes" module Hemingway module Block grammar Quote rule quote_type "quote" end rule quote_entry ( quote_paragraph / quote_last_paragraph )* end # This quote_paragraph / quote_last_paragraph business is the same pattern # I use with paragraph and last paragraph. rule quote_paragraph sequence:( content )* eop end rule quote_last_paragraph sequence:( content )+ eop? end end end end