Web Author smart quotes

Are you missing a feature? Request its implementation here.
chchrcr
Posts: 5
Joined: Wed Jun 07, 2017 8:58 pm

Web Author smart quotes

Post 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
cristi_talau
Posts: 495
Joined: Thu Sep 04, 2014 4:22 pm

Re: Web Author smart quotes

Post 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
Post Reply