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

When you keep track of the edit history on some text, is there a normalized form or way that is commonly used by text editors? This should be different from just recording the texts at different stages or taking diffs. For example, suppose there is text:

I said I like apples. (1)

and there is an edit that removes the italicized part in the following:

I said I like apples. (2)

and resulting in:

I like apples. (3)

If the text editor does not keep track of the actual operations that has been made and just records the text at different stages, then depending on the algorithm, it can happen that the difference between the two versions (1) and (3) be marked as the italicized sequence in the following:

I said I like apples. (4)

When you just consider the strings, it may not make difference, but from a user's point of view, it does make difference, and if the actual edit was (2), then I would want the difference to be marked as (2) rather than as (4). This means I need more information than just the different stages of texts, or diffs that are just calculated regardless of the actual operation.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.