Skip to content

Instantly share code, notes, and snippets.

@hokaccha
Created February 28, 2016 08:35
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 hokaccha/c55d86c311553c987ff3 to your computer and use it in GitHub Desktop.
Save hokaccha/c55d86c311553c987ff3 to your computer and use it in GitHub Desktop.
require "nokogiri"
require "open-uri"
url = "https://blog.jxck.io/entries/2016-01-28/html-compression.html"
doc = Nokogiri::HTML(open(url))
doc.css('title').each do |title|
puts title.content
#=> HTML の省略によるサイズ最適化 | blog.jxck.io
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment