removes markup from html string and returns plain text
npm install strip_tagsjavascript
npm install strip_tags
`usage
`javascript
var strip_tags = require("strip_tags");var html = "
John doe is a front end developer works in abd company";
html = strip_tags(html);
// output 'John doe is a front end developer works in abd company'
``