Skip to content

Instantly share code, notes, and snippets.

@costinEEST
costinEEST / html_cleanup.rb
Created January 3, 2016 10:48 — forked from ucarion/html_cleanup.rb
Composing programs to PDF
require 'nokogiri'
input = $stdin.readlines.join
page = Nokogiri::HTML(input)
page.css('.example').each do |elem|
elem.inner_html = '<i>Environment diagram omitted.</i>'
end
page.css('img').remove