Skip to content

Instantly share code, notes, and snippets.

@mulderp
Created February 27, 2014 12:42
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 mulderp/9249336 to your computer and use it in GitHub Desktop.
Save mulderp/9249336 to your computer and use it in GitHub Desktop.
put all images in a html img tags
f = File.new("index.html","w") ; Dir["*.jpg"].each do |n| ; f.write(%Q(<h3>#{n}</h3>\n <img src="#{n}" />\n <hr>)) ; end; f.close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment