Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any libraries (available in Maven Central) that can convert diff output to HTML? Or, maybe even better, to compare two texts and produce an HTML output of their difference.

share|improve this question

2 Answers

up vote 1 down vote accepted

check this,

<repository>
  <id>google-diff-patch-match</id>
  <name>google-diff-patch-match</name>
  <url>http://google-diff-match-patch.googlecode.com/svn/trunk/maven/</url>
</repository>
share|improve this answer
Thanks, works for me. – yegor256 Jan 21 '12 at 5:35

Checkout the demo's of google-diff-match-patch and see if it fits for you.

share|improve this answer
It's not in Maven Central, as far as I understand :( – yegor256 Jan 21 '12 at 2:58
@yegor256 seems like it isn't. you can however deploy in your company repo – Pangea Jan 21 '12 at 3:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.