module Middleman::Extensions::Lorem::LoremObject

def paragraphs(total)

Returns:
  • (String) -

Parameters:
  • total (Fixnum) --
def paragraphs(total)
  (1..total).map do
    sentences(randm(3..7)).capitalize
  end.join("\n\n")
end