public static IRedactor BeforeProcess(this RedactorProcessEvents obj, Func <string, string> function)
        {
            obj.BeforeProcess = function;

            return(obj);
        }
        public static IRedactor BeforeProcessMatch(this RedactorProcessEvents obj, Func <string, IRedactorMatch, IRedactorMatch> function)
        {
            obj.BeforeProcessMatch = function;

            return(obj);
        }