40 | <%=data[i].description%>
41 |
42 | ├── .gitignore ├── README.md ├── app.js ├── config └── config.js ├── controllers └── controller.js ├── data └── data.js ├── download └── report.pdf ├── index.js ├── package.json ├── routes └── routes.js └── views ├── index.html └── js └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | #modules 2 | /node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Generate PDF through the HTML content. 2 | 3 |