I am using google-diff-match-patch with my java application to create diff. I am using the diff_prettyHtml method to generate HTML diff output.
However, I would like to have two different outputs, so I can put them side by side to make it a little easier for the user to see the differences. (For example, like Eclipse).
Is there anything in this library that I can use for this? How would you do that? (I would not use another library, if possible.)
source
share