Issue while comparing table using daisy diff
Hi,
I am comparing two files, each file contains a table, I have edited the contents of the table in one file. After comparing the these two files with daisy diff, the result is not as expected. The removed content comes at the top of the table rather it should come beside the content which was edited. You can refer the attached image for more clarity on this scenario.
Have a look at my comment here - it might help but I couldn't see a solution other than to change the algorithm, I wasn't in a position to contribute that back at the time and wasn't sure it was the right thing to do, although it seems promising.
Thanks for the report. DaisyDiff is looking for someone to take over the codebase to address issues like this.
`
| 12 | 5 | 2 |
| 3 | 46 | 6bjkb |
| 12 | 5 | 2 |
| 34 | 46 | 6bjkb |
| 12 | 5 | 2**3** |
| **34**46 | 64 | 6bjkb |
When comparing the table it is not working as expected. What I can see is that it is adding the removed value to the previous parent.
The correct output should be -
| 12 | 5 | 2 |
| **3**34 | **46**64 | 6bjkb |
If anyone could help?