var htmlToText = require('html-to-text');
var text = htmlToText.fromString("This is a <a href='url'>link</a>.");
console.log(text);
will print This is a link [url] . (note the space before the period). Makes it problematic to use, for example when a url comes at the end of a sentence.
It also seems to be adding spaces before the link.
will print
This is a link [url] .(note the space before the period). Makes it problematic to use, for example when a url comes at the end of a sentence.It also seems to be adding spaces before the link.