Skip to content

Instantly share code, notes, and snippets.

@Keqi
Created March 11, 2013 08:16
Show Gist options
  • Save Keqi/5132753 to your computer and use it in GitHub Desktop.
Save Keqi/5132753 to your computer and use it in GitHub Desktop.
irb(main):002:0> summary = "<p>Some summary review.</p>\n\r"
=> "<p>Some summary review.</p>\n\r"
irb(main):003:0> detail = "<p>Some detailed review</p>\n"
=> "<p>Some detailed review</p>\n"
irb(main):004:0> CrazyHarry.fragment(summary).redact!(unsafe: true, tags: 'p').to_s
=> "Some summary review."
irb(main):005:0> CrazyHarry.fragment(summary + detail).redact!(unsafe: true, tags: 'p').to_s
=> "Some summary review.\n\n\rSome detailed review"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment