namespace SharpChat { public static class SharpUtil { public static string Sanitise(string? body) { if(string.IsNullOrEmpty(body)) return string.Empty; return body.Replace("<", "<").Replace(">", ">").Replace("\n", "
").Replace("\t", " "); } } }