Skip to content

Instantly share code, notes, and snippets.

@scudco
Created February 12, 2013 21:46
Show Gist options
  • Save scudco/4773676 to your computer and use it in GitHub Desktop.
Save scudco/4773676 to your computer and use it in GitHub Desktop.
some_random_id = SecureRandom.hex
content = <<-EOS
<div id="#{some_random_id}">
#{actual_html_to_parse}
</div>
EOS
html = Nokogiri.HTML(content)
# probably going to transform the data here...
html.css("##{some_random_id}").inner_html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment