Created
April 30, 2012 18:51
-
-
Save jasonreposa/2561185 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
html = Nokogiri::HTML(the_content) | |
... | |
html.xpath("//ul[@id='sharebar']").each(&:remove) | |
html.xpath('//script').each(&:remove) | |
html.xpath('//@onclick').each(&:remove) | |
html.xpath('//@class').each(&:remove) | |
html.xpath('//@style').each(&:remove) | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment