Created
February 28, 2016 08:35
-
-
Save hokaccha/c55d86c311553c987ff3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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