escapedTagStartParser function
Replaces an escaped Tag start (e.g. : {{ ) to a String e.g. containing: {{ (without escape) so that it is not parsed as a Tag or Variable
Implementation
Parser<String> escapedTagStartParser(String tagStart) =>
string('\\$tagStart').map((value) => tagStart);