10 lines
326 B
C#
10 lines
326 B
C#
namespace SharpChat {
|
|
public static class Utility {
|
|
public static string Sanitise(string? body) {
|
|
if(string.IsNullOrEmpty(body))
|
|
return string.Empty;
|
|
|
|
return body.Replace("<", "<").Replace(">", ">").Replace("\n", " <br/> ").Replace("\t", " ");
|
|
}
|
|
}
|
|
}
|