module FFaker::HTMLIpsum

def ol_short(items = 3)

def ol_short(items = 3)
  content_tag_for :ol do |ol|
    items.times do
      ol << content_tag_for(:li, sentence(2))
    end
  end
end