module Faker::HTMLIpsum
def p(count = 3, options = {})
def p(count = 3, options = {}) options = {:fancy => false, :include_breaks => false}.merge(options) if options[:fancy] s = fancy_string(count, options[:include_breaks]) else mode = options[:include_breaks] ? "paragraphs" : "paragraph" s = send(mode.to_sym, count) end "<p>#{s}</p>" end