{
  "hn" : {
  	"name" : "Hacker News",
    "url" : "http://news.ycombinator.com/news",
    "type" : "text/html",
    "selectors" : {
      "list" : "td:not([align]).title",
      "article" : {
        "url" : {
          "selector" : "a",
          "attr" : "href"
        },
        "src" : "span",
        "title" : "a"
      }
    }
  },
  "reddit-js" : {
  	"name" : "Reddit JavaScript",
  	"url" : "http://www.reddit.com/r/javascript/.json",
    "type" : "application/json",
    "selectors" : {
      "list" : "data.children",
      "article" : {
        "url" : "data.url",
        "src" : "data.domain",
        "title" : "data.title"
      }
    }
  },
  "reddit-node" : {
  	"name" : "Reddit Node.js",
  	"url" : "http://www.reddit.com/r/node/.json",
    "type" : "application/json",
    "selectors" : {
      "list" : "data.children",
      "article" : {
        "url" : "data.url",
        "src" : "data.domain",
        "title" : "data.title"
      }
    }
  },
  "echojs" : {
  	"name" : "EchoJS",
  	"url" : "http://www.echojs.com",
    "type" : "text/html",
    "selectors" : {
      "list" : "#newslist > article",
      "article" : {
        "url" : {
          "selector" : "h2 > a",
          "attr" : "href"
          },
          "src" : "address",
          "title" : "h2 > a"
      }
    }
  }
}
