n8n HTML to PDF: How to dynamically generate reports from JSON data ?
Hi, I have a JSON item with a nested array representing table data: { "reportTitle": "Weekly Sales", "items": [ { "product": "Product A", "quantity": 10, "unitPrice": 5 }, { "product": "Product B", "quantity": 7, "unitPrice": 8 } ] } I want to generate a PDF report using the HTML node, but Iām struggling to make the report dynamicācurrently the HTML is static. Iām open to any suggestions or approaches for dynamically generating reports from this kind of JSON data, not just table loops. Thanks!