Tokenize HTML into a list of text tokens
npm install tokenize-htmltext

Tokenize an html string into a list of text tokens, it keeps reference to indexes in the original string.
```
$ npm install tokenize-text
`js
var tokenizeHTML = require('tokenize-htmltext');
var tokens = tokenizeHTML('hello world');
/*
[ { value: 'hello', index: 3, offset: 5 },
{ value: ' world', index: 12, offset: 6 } ]
*/
``