lua-differ/README.md

28 lines
352 B
Markdown
Raw Normal View History

2017-10-26 02:18:01 -07:00
# LuaDiffer: A simple lua diff library
This is a simple lua module that performs a diff on two strings and returns a table of
string chunks.
## Example
```lua
make_diff = require "diff"
2017-10-26 02:18:42 -07:00
s1 = [[hello
2017-10-26 02:18:01 -07:00
to the
world]]
2017-10-26 02:18:42 -07:00
s2 = [[hello
2017-10-26 02:18:01 -07:00
at the
world]]
diff = make_diff(s1, s2)
diff:print{color=false}
```
Produces:
```
hello
- to the
+ at the
world
```