This setting is relevant for the LiteralText.
If true (the default), character string literals are treated like in "normal" string.Format:
string.Format("\t") will return a "TAB" character
If false, character string literals are not converted, just like with this string.Format:
string.Format(@"\t") will return the 2 characters "\" and "t"