2024-05-13 20:55:54 +00:00
|
|
|
|
namespace SharpChat {
|
2024-05-19 02:17:51 +00:00
|
|
|
|
public static class Utility {
|
2024-05-13 20:55:54 +00:00
|
|
|
|
public static string Sanitise(string? body) {
|
|
|
|
|
if(string.IsNullOrEmpty(body))
|
|
|
|
|
return string.Empty;
|
|
|
|
|
|
|
|
|
|
return body.Replace("<", "<").Replace(">", ">").Replace("\n", " <br/> ").Replace("\t", " ");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|