How to store dynamic references to parts of a text
- by Antoine L
In fact, my question concerns an algorithm. I need to be able to attach annotations to certain parts of a text, like a word or a group of words. The first thing that came to me to do so is to store the position of this part (indexes) in the text.
For instance, in the text 'The quick brown fox jumps over the lazy dog', I'd like to attach an annotation to 'quick brown fox', so the indexes of the annotation would be 4 - 14.
But since the text is editable (other annotations could provoke a modification from text's author), the annoted part is likely to move (the indexes could change). In fact, I don't know how to update the indexes of the annoted part.
What if the text becomes 'Everyday, the quick brown fox jumps over the lazy dog' ?
I guess I have to watch every change of the text in the front-end application ?
The front-end part of the application will be HTML with Javascript.
I will be using PHP to develop the back-end part and every text and annotation will be stored in a database.