internal static string ParseSpecial(string template, SpecialTokenTypes tokenType, string url, string title, bool canRead, string options = "")
        {
            switch (tokenType)
            {
            case SpecialTokenTypes.AddThis:
                return(ParseAddThis(template, url, title, canRead, options));
            }

            return(template);
        }
        internal static string ParseSpecial(string template, SpecialTokenTypes tokenType, string url, string title, bool canRead, string options = "")
        {
            switch (tokenType)
            {
                case SpecialTokenTypes.AddThis:
                    return ParseAddThis(template, url, title, canRead, options);
            }

            return template;
        }