Fixes a text highlight issue with the offset when highlights are not listed in order in config. This caused problems like this...
866)
...because the reduce function was processing later highlights first, adding to the offset and then placing earlier highlights in the wrong spot, sometimes even inserting them mid-span tag. By just sorting on start index, this problem is avoided.
Fixes a text highlight issue with the offset when highlights are not listed in order in config. This caused problems like this...
866)
...because the reduce function was processing later highlights first, adding to the
offset
and then placing earlier highlights in the wrong spot, sometimes even inserting them mid-span tag. By just sorting on start index, this problem is avoided.