From 528694c07b6a490e3fcd73cc23ab8c55a2ebc33e Mon Sep 17 00:00:00 2001 From: goferito Date: Sun, 8 Mar 2015 16:07:05 +0100 Subject: [PATCH] Minor readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d0b33ef..afc93b2 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Node Bing API Node.js lib for the Azure Bing Web Search API -### Installation +## Installation ```` npm install node-bing-api ```` -### Usage +## Usage Require the library and initialialize it with your account key: @@ -14,7 +14,7 @@ Require the library and initialialize it with your account key: var Bing = require('node-bing-api')({ accKey: "your-account-key" }); ``` -##### Web Search: +#### Web Search: ```js Bing.web("Pizza", function(error, res, body){ console.log(body); @@ -25,7 +25,7 @@ Bing.web("Pizza", function(error, res, body){ }); ``` -##### Images Search: +#### Images Search: ```js Bing.images("Ninja Turtles", function(error, res, body){ console.log(body); @@ -47,7 +47,7 @@ Accepted filter values: * Face:\ -##### Specify Market +#### Specify Market Getting spanish results: ```js Bing.images("Ninja Turtles", function(error, res, body){ @@ -57,7 +57,7 @@ Bing.images("Ninja Turtles", function(error, res, body){ [List of Bing Markets](https://msdn.microsoft.com/en-us/library/dd251064.aspx) -##### Adult Filter +#### Adult Filter ```js Bing.images('Kim Kardashian', function(error, res, body){ console.log(body.d.results); @@ -69,6 +69,6 @@ Accepted values: "Off", "Moderate", "Strict". or videos, but may include sexually explicit text.* -### License +## License MIT