Skip to content

Instantly share code, notes, and snippets.

@h3h
Created August 10, 2014 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h3h/34a1df33acc03448dbc1 to your computer and use it in GitHub Desktop.
Save h3h/34a1df33acc03448dbc1 to your computer and use it in GitHub Desktop.
Random Plausible HTML Tags
def random_plausible_html_tags(num=5)
num.times.map { [*('a'..'z')].sample(rand(6) + 1).join }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment