Skip to content

Commit

Permalink
MarkDown fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
spier committed Oct 22, 2011
1 parent 0472356 commit 1dd21ad
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions usatoday/README.md
Expand Up @@ -15,17 +15,17 @@ Then you can load the [YQL console][console] and try the examples below, always

### topnews

** articles from **topnews** (by default returns 10 results)
* articles from **topnews** (by default returns 10 results)

SET api_key="YOUR_API_KEY" ON usatoday;
SELECT * FROM usatoday.articles.topnews;

** more articles from **topnews** (in this case 20)
* more articles from **topnews** (in this case 20)

SET api_key="YOUR_API_KEY" ON usatoday;
SELECT * FROM usatoday.articles.topnews(0,20);

** articles from **topnews** that fall into a certain **section**
* articles from **topnews** that fall into a certain **section**

SET api_key="YOUR_API_KEY" ON usatoday;
SELECT * FROM usatoday.articles.topnews WHERE section='tech';
Expand All @@ -37,12 +37,12 @@ Then you can load the [YQL console][console] and try the examples below, always
SET api_key="YOUR_API_KEY" ON usatoday;
SELECT * FROM usatoday.articles.search WHERE search='Germany';

** articles from a certain **reporter**
* articles from a certain **reporter**

SET api_key="YOUR_API_KEY" ON usatoday;
SELECT * FROM usatoday.articles.search WHERE reporter='Zillgitt';

** articles with a given **tag**
* articles with a given **tag**

SET api_key="YOUR_API_KEY" ON usatoday;
SELECT * FROM usatoday.articles.search WHERE tag='barack obama';
Expand All @@ -67,5 +67,3 @@ Then you can load the [YQL console][console] and try the examples below, always

[usatoday]: http://developer.usatoday.com
[console]: http://yhoo.it/usatoday_yql


0 comments on commit 1dd21ad

Please sign in to comment.