From 94ca863eb68b44438e10283fb11d078d72c51b37 Mon Sep 17 00:00:00 2001
From: Guillermo <gui@mit.edu>
Date: Sun, 2 Oct 2016 14:55:37 -0400
Subject: [PATCH] add script tag example

---
 README.md | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 5d7e890..51bfc0a 100644
--- a/README.md
+++ b/README.md
@@ -7,14 +7,25 @@ Tesseract.js is a pure javascript version of the Tesseract OCR Engine that can r
 <!-- ![alt text]( "Logo Title Text 1") -->
 
 # Installation
-Tesseract.js works with a `<script>` tag, or with `npm` (if you're using webpack /browserify).
+Tesseract.js works with a `<script>` tag via local copy or cdn, or with `npm` (if you're using webpack / browserify).
 
 ## `<script/>`
-First grab copies of `tesseract.js` and `tesseract.worker.js` from the [dist folder](https://github.com/naptha/tesseract.js/tree/master/dist). Then include `tesseract.js on your page like this`:
+First grab copies of `tesseract.js` and `tesseract.worker.js` from the [dist folder](https://github.com/naptha/tesseract.js/tree/master/dist). Then include `tesseract.js` on your page like this:
+
 ```html
 <script src='/path/to/tesseract.js'></script>
+
+<script>
+var worker = createTesseractWorker('/path/to/tesseract.worker.js')
+
+worker.recognize('#my-image')
+    .progress(function (p) { console.log('progress', p) })
+    .then(function (result) { console.log('result', result) })
+</script>
 ```
 
+After that, you should 
+
 ## npm 
 ```shell
 npm install tesseract