From 7d978ac8135c54058832173985cdc6b0c5888bcf Mon Sep 17 00:00:00 2001 From: Guillermo Date: Mon, 3 Oct 2016 20:38:30 -0400 Subject: [PATCH] readme stuff --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ab8b61b..9fa5841 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,13 @@ # [Tesseract.js](http://tesseract.projectnaptha.com/) -Tesseract.js is a javascript library that gets words in [almost any language](./tesseract_lang_list.md)* out of images. +Tesseract.js is a javascript library that gets words in [almost any language](./tesseract_lang_list.md) out of images. ![fancy demo gif](http://placehold.it/700x300 "jhgfjhgf") -The tesseract API is dead simple, and looks like this: +Tesseract.js works with script tags, webpack/browserify, and node. Once you've [installed it](#installation), using it is as simple as ```javascript -Tesseract.recognize('#my-image') +Tesseract.recognize(my_image) .progress(function (p) { console.log('progress', p) }) .then(function (result) { console.log('result', result) }) ```