Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 556 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 556 Bytes

HTMLDiff

Build Status

Installation

gem 'htmldiff', github: 'karnov/htmldiff'

Examples

class Stuff

  class << self
    include HTMLDiff
  end

  # or extend HTMLDiff ?

end
Stuff.diff('a word is here', 'a nother word is there')
# => 'a<ins class=\"diffins\"> nother</ins> word is <del class=\"diffmod\">here</del><ins class=\"diffmod\">there</ins>'

Checkout the crappy specs for good examples.