/// <summary>
 /// Supply a HTML hint to display along with the field.
 /// </summary>
 /// <param name="hint">The hint markup</param>
 /// <param name="config">Field configuration to update</param>
 /// <returns>The instance of <see cref="IFieldConfiguration"/> to allow for method chaining</returns>
 public static IFieldConfiguration WithHint(this IFieldConfiguration config, Func <object, IHtmlString> hint)
 {
     if (config != null)
     {
         return(config.WithHint(hint(null)));
     }
     return(null);
 }