${brewText.replaceAll('&', '&').replaceAll('<', '<').replaceAll('>', '>')}`;
+ const replaceStrings = { '&': '&', '<': '<', '>': '>' };
+ const text = brewText;
+ for (const replaceStr in replaceStrings) {
+ text = text.replaceAll(replaceStr, replaceStrings[replaceStr]);
+ }
+ return `${text}`;
} else if(type == 'download') {
return brewText;
} else {