module Faker::HTMLIpsum

def dl(definitions = 2)

def dl(definitions = 2)
  s = "<dl>"
  definitions.times do
    s << "<dt>#{words(1).capitalize!}</dt><dd>#{paragraph 2}</dd>"
  end
  s << "</dl>"
end