| commit | 776c10554c595258f0e677fce730371bf0950141 | [log] [tgz] |
|---|---|---|
| author | Aryan Naraghi <[email protected]> | Sun Feb 26 19:42:41 2017 |
| committer | GitHub <[email protected]> | Sun Feb 26 19:42:41 2017 |
| tree | ab507a1599674e7e8899a55d963e75a22caccb4f | |
| parent | 55c4b2b398cf71d560f802bfd62a15df42da843e [diff] | |
| parent | 9237ff6aafff8af3e63b1fa5a056bb311af5dd27 [diff] |
Merge pull request #3 from udhos/master godoc badge.
difflib is a simple library written in Go for diffing two sequences of text.
To install, issue:
go get github.com/aryann/difflib
To start using difflib, create a new file in your workspace and import difflib:
import (
...
"fmt"
"github.com/aryann/difflib"
...
)
Then call either difflib.Diff or difflib.HTMLDiff:
fmt.Println(difflib.HTMLDiff([]string{"one", "two", "three"}, []string{"two", "four", "three"}))
If you'd like more control over the output, see how the function HTMLDiff relies on Diff in difflib.go.
There is a demo application in the difflib_demo directory. To run it, navigate to your $GOPATH and run:
go run src/github.com/aryann/difflib/difflib_server/difflib_demo.go <file-1> <file-2>
Where <file-1> and <file-2> are two text files you'd like to diff. The demo will launch a web server that will contain a table of the diff results.