I got this XML file in use in Adobe-Indesign which is used for Autocorrection:
<?xml version="1.0" encoding="UTF-16" standalone="yes"?>
<autocorrect>
<language name="English: USA" />
<wordpairs>
<wordpair misspelled="-" corrected="~" />
<wordpair misspelled="abbout" corrected="about" />
<wordpair misspelled="abotu" corrected="about" />
...
I'd like to be able to change all dashes (x002D) to tildes (x007E), even in compound words.
However, the app replaces only entire words, just like you would expect from an Autocorrect feature.
I was wondering if there was somehow a way to indicate that dashes (x002D) can be preceded or followed by a generic character.
I tried to change "standalone" to "no" but it doesn't do the job.
I hope I make myself clear enough, English is not my 1st language
Thanks