Hello:<div><br></div><div>     I have found that fancy-quotes change apostrophes in some English contractions not translated into Spanish (or any other language). It is the case of "it's" and other English contractions. A complete list can be found at <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Contraction_(grammar)">https://secure.wikimedia.org/wikipedia/en/wiki/Contraction_(grammar)</a></div>
<div><br></div><div>    I think that a filter could be added to avoid this changes, i.e. with the regexp:</div><div><br></div><div>    \b\w+\'(t|m|re|s|ve|d|ll)\b</div><div><br></div><div>    A similar problem occurs with some Irish and Scotish names like "O'Donnel". In this case the filtering regexp could be:</div>
<div><br></div><div>    \b(O|M|Mc)\'[A-Z]\w+\b</div><div><br></div><div>Yours: Javier.</div>