pug para html
// See this website: https://pughtml.com/
Coding Random Things
// See this website: https://pughtml.com/
// use https://pughtml.com/ for this
html
head
title= 'Books List'
body
h1= 'Books List'
table
for book in booksList
tr
td= book._id
td= book.name
td= book.price
td= book.quantity