/// <summary>
 /// Replace per i tag comuni su pagine e email
 /// </summary>
 public static string CommonReplace(this string text)
 {
     if (string.IsNullOrEmpty(text)) return string.Empty;
     var sb = new StringBuilder(text);
     return sb.CommonReplace().ToString();
 }