add hint for "bufferapp.com"

This commit is contained in:
2014-01-30 10:52:59 +01:00
parent 94340e5cf5
commit 70b3b1c9b9
2 changed files with 9 additions and 8 deletions
@@ -133,11 +133,11 @@ namespace ReadSharp.Ports.NReadability
private static readonly Regex _MailtoHrefRegex = new Regex("^\\s*mailto\\s*:", RegexOptions.IgnoreCase);
private static readonly Regex _TitleWhitespacesCleanUpRegex = new Regex("\\s+");
private static readonly Dictionary<Regex, string> _articleContentElementHints =
new Dictionary<Regex, string>
{
{ new Regex("^https?://(www|mobile)\\.theverge.com", RegexOptions.IgnoreCase), ".entry-body" },
};
private static readonly Dictionary<Regex, string> _articleContentElementHints = new Dictionary<Regex, string>
{
{ new Regex("^https?://(www|mobile)\\.theverge.com", RegexOptions.IgnoreCase), ".entry-body" },
{ new Regex("^https?://(www|blog)\\.bufferapp.com", RegexOptions.IgnoreCase), ".post" }
};
#endregion