add content hint for polygon

This commit is contained in:
2014-01-31 17:14:47 +01:00
parent c3cccc3f31
commit f4190ecbcd
2 changed files with 9 additions and 3 deletions
@@ -138,7 +138,8 @@ namespace ReadSharp.Ports.NReadability
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" }
{ new Regex("^https?://(www|blog)\\.bufferapp.com", RegexOptions.IgnoreCase), ".post" },
{ new Regex("^https?://(www.)?polygon.com", RegexOptions.IgnoreCase), ".body" }
};
#endregion