protected override string GetTweetHTML(DesktopNotification tweet)
        {
            string html = tweet.GenerateHtml("td-screenshot", HeadLayout, Config.CustomNotificationCSS);

            foreach (InjectedHTML injection in plugins.NotificationInjections)
            {
                html = injection.InjectInto(html);
            }

            return(html);
        }