|
"AttributeQuoting"
This conversion option determines whether attribute values are enclosed by single quotes or double quotes.

The option "AttributeQuoting" and its possible values.
With the default setting, "AttributeQuoting" "'", attribute values are enclosed in single quotes. This ensures that there is no conflict with Mathematica strings, which are typically enclosed in double quotes.
In[1]:=
Out[1]=
For certain applications, you might prefer attribute values to be enclosed in double quotes. This can be done by setting "AttributeQuoting" "\"". Note that the double-quote character must be preceded by a forward slash to escape it.
In[2]:=
Out[2]=
|