export const specialCharacterConverter = function (str: string) { return str .replace(/\&/g, "&") .replace(/\/g, ">"); };