Replies: 1 comment 3 replies
|
My company started to migrate from Trac to Outline and I used the diff feature in Trac's wiki quite often. Outline's email notifications of changes that my coworkers made are quite handy, but the link in those emails does not lead to changes but to the whole page. I would then have to read the whole page and try to remember what could be new or read the new and the old version and compare by eyeballing. Looking at a colored diff like in Trac wiki or Github (or Google Docs as shown above) would be a whole new level. |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
It's nice to see revisions are kept for future review. It could be even better if there's an user interface to check the diff between revisions visually. Here's an example from Google Docs:
An easy approach is to render the two revisions and feed them to a HTML diff tool (e.g. htmldiff.js), which works pretty well in highlight diffs by
<ins>and<del>elements.A clearer way could be running a diff on the doc source file and render the diff. This may result in many corner cases and need to handled with great care.
All reactions