module Middleman::Extensions::Lorem::LoremObject

def words(total)

Returns:
  • (String) -

Parameters:
  • total (Fixnum) --
def words(total)
  (1..total).map do
    randm(WORDS)
  end.join(' ')
end