The following globally-available constants are used to customize the formatting preferences for your CETextSnippets and CETextRecipes:
0; text will not be automatically formatted at all by EspressoYou can combine multiple options using bitwise operators. For instance, to insert a text snippet that converts newline and indentation characters, but leaves the indentation level alone you would do this:
var snippet = new CETextSnippet(
snippetText,
CETextOptionNormalizeLineEndingCharacters | CETextOptionNormalizeIndentationCharacters
);