Page 1 of 1

Web Author smart quotes

Posted: Tue Jun 13, 2017 6:00 pm
by chchrcr
We'd like the ability to have autocorrecting smart quotes, and ability to set it as a default preference option. It's not listed on the supported options page. Are there plans to support, or do you have alternate suggestions for the browser environment?

https://www.oxygenxml.com/doc/versions/ ... tions.html

Thanks,
C

Re: Web Author smart quotes

Posted: Tue Jun 13, 2017 6:38 pm
by cristi_talau
Hello,

The option is supported, just that it si not mentioned in the table. The corresponding configuration snippet is as follows:

Code: Select all

   		
<entry>
<String>auto.correct.double.quotes</String>
<autoCorrectQuotes>
<field name="enabled">
<Boolean>true</Boolean>
</field>
<field name="startQuote">
<Character>“</Character>
</field>
<field name="endQuote">
<Character>”</Character>
</field>
</autoCorrectQuotes>
</entry>
<entry>
<String>auto.correct.single.quotes</String>
<autoCorrectQuotes>
<field name="enabled">
<Boolean>true</Boolean>
</field>
<field name="startQuote">
<Character>‘</Character>
</field>
<field name="endQuote">
<Character>’</Character>
</field>
</autoCorrectQuotes>
</entry>
Best,
Cristian