Can I turn off auto-insertion of non-breaking spaces?
Posted: Fri Oct 07, 2016 2:49 pm
It seems that Flare takes it upon itself to insert non-breaking spaces ( ) on my behalf when it thinks something perhaps should be kept together. For example, when I type MY Data File.csv into a "filename" span I use a lot, the XML is likely to show as <span class="filename">MY Data File.csv</span> even though I didn't type it that way.
Trouble is, Flare may know how to deal with this just fine down the road when creating outputs, but my automation tooling has to perform painful gymnastics, such as
private string ReplaceIllegalFileChars(string name)
{
string retVal = name;
char[] chars = { '\u00A0', '\u0020' };//remove Flare's
retVal = retVal.Replace(chars[0], chars[1]);
return retVal;
}
What is Flare's logic for inserting
Is this subject to user control in any way? For example, can I turn it off?
Many thanks!
Trouble is, Flare may know how to deal with this just fine down the road when creating outputs, but my automation tooling has to perform painful gymnastics, such as
private string ReplaceIllegalFileChars(string name)
{
string retVal = name;
char[] chars = { '\u00A0', '\u0020' };//remove Flare's
retVal = retVal.Replace(chars[0], chars[1]);
return retVal;
}
What is Flare's logic for inserting
Is this subject to user control in any way? For example, can I turn it off?
Many thanks!