Skip to content

Commit d784f84

Browse files
committed
Merge origin/master
2 parents a41c680 + 052ac7c commit d784f84

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

README.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# java-diff-utils
22

33
## Status ##
4-
[![Build Status](https://travis-ci.org/wumpz/java-diff-utils.svg?branch=master)](https://travis-ci.org/wumpz/java-diff-utils)
5-
6-
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/7eba77f10bed4c2a8d08ac8dc8da4a86)](https://www.codacy.com/app/wumpz/java-diff-utils?utm_source=github.com&utm_medium=referral&utm_content=wumpz/java-diff-utils&utm_campaign=Badge_Grade)
4+
[![Build Status](https://travis-ci.org/wumpz/java-diff-utils.svg?branch=master)](https://travis-ci.org/wumpz/java-diff-utils) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/7eba77f10bed4c2a8d08ac8dc8da4a86)](https://www.codacy.com/app/wumpz/java-diff-utils?utm_source=github.com&utm_medium=referral&utm_content=wumpz/java-diff-utils&utm_campaign=Badge_Grade)
75

86
## Intro ##
97
Diff Utils library is an OpenSource library for performing the comparison operations between texts: computing diffs, applying patches, generating unified diffs or parsing them, generating diff output for easy future displaying (like side-by-side view) and so on.
@@ -16,6 +14,22 @@ Main reason to build this library was the lack of easy-to-use libraries with all
1614

1715
Look [here](https://github.com/wumpz/java-diff-utils/wiki) to find more helpful informations and examples.
1816

17+
These two outputs are generated using this java-diff-utils. The source code can also be found at the *Examples* page:
18+
19+
**Producing a one liner including all difference information.**
20+
21+
This is a test ~senctence~**for diffutils**.
22+
23+
24+
**Producing a side by side view of computed differences.**
25+
26+
|original|new|
27+
|--------|---|
28+
|This is a test ~senctence~.|This is a test **for diffutils**.|
29+
|This is the second line.|This is the second line.|
30+
|~And here is the finish.~||
31+
32+
1933
## Main Features ##
2034

2135
* computing the difference between two texts.

0 commit comments

Comments
 (0)