Example on making lists in html
Example on making lists in html const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN}); let bodyHtml = ` Bullet Examples thing1 thing2 thing3 thing1 thing2 thing3 `; return { statusCode: 200, headers: { 'Content-Type': 'text/html', }, body: bodyHtml, };