We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1162877 commit dc2c77bCopy full SHA for dc2c77b
README.md
@@ -23,7 +23,7 @@ You can read from a file via:
23
var htmlToText = require('html-to-text');
24
25
htmlToText.fromFile(path.join(__dirname, 'test.html'), {
26
- tables: ['invoice', 'address']
+ tables: ['#invoice', '.address']
27
}, function(err, text) {
28
if (err) return console.error(err);
29
console.log(text);
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "html-to-text",
3
- "version": "0.0.3",
+ "version": "0.0.4",
4
"description": "Simple html to plain text converter",
5
"main": "index.js",
6
"scripts": {
0 commit comments