Email-safe HTML list converter
npm install bulletprooflistA universal tool to convert unordered and ordered lists in HTML file to bulletproof email HTML list by changingul, ol and li elements to nested tables to consistent email client rendered view.
INSTALLATION
``js`
npm install bulletproofList
USAGE:
`js
var createBulletproofList = require("bulletproofList");
var yourHtml = "Your HTML
";
var OutputWithBulletproofList = createBulletproofList(yourHtml);
``
yourHtml is the input HTML string
returns OutputWithBulletproofList containing the same text as in yourHtml, but with list converted to bulletproof
email HTML list