Skip to content

Instantly share code, notes, and snippets.

@3limin4t0r
Created October 1, 2019 12:58
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 3limin4t0r/5d860dcadcc65cb0e769e35d398e79af to your computer and use it in GitHub Desktop.
Save 3limin4t0r/5d860dcadcc65cb0e769e35d398e79af to your computer and use it in GitHub Desktop.
require 'nokogiri'
fragment = Nokogiri::HTML.fragment(<<~HTML)
<div class="post">
<strong>Hello</strong> <em>World</em>!
</div>
HTML
fragment.css(".post").map(&:content)
#=> ["\n Hello World!\n"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment