Espresso

Constants

The following globally-available constants are used to customize the formatting preferences for your CETextSnippets and CETextRecipes:

You 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
);