Displays diffs of html input strings
class Stuff
class << self include HTMLDiff end
end
Stuff.diff('a word is here', 'a nother word is there')
# => 'a<ins class="diffins"> nother word is <del class="diffmod">here<ins class="diffmod">there'
Checkout the crappy specs for good examples.